(1) What is (void*)0?
(2) Can you combine the following two statements into one?
char *p;
p = (char*) malloc(100);
(3) In which header file is the NULL macro defined?
(4) How many bytes are occupied by near, far and huge pointers (DOS)?
(5) The operator used to get value at address stored in a pointer variable is
(6) What would be the equivalent pointer expression for referring the array element a[i][j][k][l]
(7) 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?
(8) A pointer is