What will be the output of the following C++ code?
What is the full form of 'vtable'?
Predict the functionality of the algorithm.
a = ( x > y ) ? (( x > z ) ? x : z) : (( y > z ) ? y : z )
What is the value of x,y and z respectively?
Consider the expression Y = A'.B' + A.B' A'.B. Minimize the expression using different Boolean algebra laws.
char m[30];
char * z="Abekus";
int len=strlen(z);
for(int i=0;i<len;i++)
m[i]=z[len-i];
printf("%s",m);
What type of list does the forward_list sequence container implement?
What is the output of the following program?
int main()
{
int i,j;
for(i = 0,j=0;i<5;i++)
{
printf("%d%d--",i,j);
}
return 0;
}
Which of the following statements is FALSE?
What is the output of the following C program?
#include <stdio.h>
void func1();
void func2();
#pragma startup func1
#pragma exit func2
void func1()
{
printf("Inside func1()\n");
}
void func2()
{
printf("Inside func2()\n");
}
int main()
{
printf("Inside main()\n");
return 0;
}