The operator used for dereferencing or indirection is ____
#include
What should be the output of below program?
int main()
{
int a=10; cout<<a++;
return 0;
}
What is the header file used for declaring the standard library algorithms?
Among the following classes which is the one that cannot be instantiated
What will the output of the following C code?
printf("\n Hello\"world \" ");
What is the result of the following statement?
x = y = z = 0;
If void is used in argument passing what will happen?
What is the output of the following C code?
#include <stdio.h>
int main()
{
register static int i = 10;
i = 11;
printf("%d\n", i);
}
Which of the following statements about templates is correct?