Which of the following is an indirection operation?
What will be the value of (5 * ++j) % 6 if the initial value of j is 5?
Calculate the product of 111010 and 101.
Which header file is used to manipulate strings in C++?
In c++ main() must be declared as?
Which members of a class are inherited but not accessible in the child class?
#include
What will be the output of the following C code?
#include<stdio.h>
int main()
{
int i=0;
while(++i)
{
printf("H");
}
return 0;
}
In the following program, if the initial value of a is 100, what will be the final value of a after executing the code?
#define min 1
#define max 100
main()
{
int a;
if(a>max)
a=1;
else if(a<min)
a=-1;
a=50;
}
0946, 786427373824, ‘x’ and 0X2f are _____ _____ ____ and _____ literals respectively.