Question 1
What will be the output of the following ‘C’ code?
#include <stdio.h>
int main()
{
int x = 128;
printf("\n%d", 1 + x++);
return 0;
}
128
129
130
131
Question 2
Question 3
Question 4
Question 5
Question 6
Question 7
What does the following expression means ?
char ∗(∗(∗ a[N]) ( )) ( );
a pointer to a function returning array of n pointers to function returning character pointers.
a function return array of N pointers to functions returning pointers to characters
an array of n pointers to function returning pointers to characters
an array of n pointers to function returning pointers to functions returning pointers to characters.
Question 8
Question 9
Question 10
There are 50 questions to complete.