C Language MCQ - English
In which header file is the NULL macro defined?
stdio.h
stddef.h
stdio.h and stddef.h
math.h
Answer : C
View More Related Question
1) Which is an indirection operator among the following?
2) What will be the output of the program ? #include<stdio.h>
int main()
{
int i=3, *j, k;
j = &i;
printf("%d\n", i**j*i+*j);
return 0;
}
3) If a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
4) What would be the equivalent pointer expression for referring the array element a[i][j][k][l]
5) Which of the following does not initialize ptr to null (assuming variable declaration of a as int a=0;)?