What is the output of the following code? #include
void main()
{
/* this is /* an example */ of nested comment */
printf(“\n123”);
}
What is the output of the following code if user enters “This is a test”?
#include
void main()
{
char str[8];
scanf(“%s”,&str);
printf(“\n%s”,str);
}
12.34f is a ________ constant.
If you don`t initialize a static array, what will be the elements set to?
Text file end with?
What is the output of the following code?
#include
void main()
{
int a = 0;
printf(“\n %d\t”, (a = 10/a));
}
A linear list, in which elements can be added or removed at either end but not in the middle, is known as
For queue which of following are true
In the arrary representation of circular queue when can we say that the queue is full?
Which data structure is needed to convert infix notation to postfix notation