1. | The operator used to get value at address stored in a pointer variable is |
|||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss. |
2. | A pointer is |
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|
3. | What would be the equivalent pointer expression for referring the array element a[i][j][k][l] |
|||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss. |
4. | 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? |
|||||||
Answer: Option D Explanation: No answer description available for this question. Let us discuss. |
5. | How many bytes are occupied by near, far and huge pointers (DOS)? |
|||||||
Answer: Option A Explanation: near=2, far=4 and huge=4 pointers exist only under DOS. Under windows and Linux every pointers is 4 bytes |
6. | In which header file is the NULL macro defined?
|
|||||||
Answer: Option C Explanation: The macro "NULL" is defined in locale.h, stddef.h, stdio.h, stdlib.h, string.h, time.h, and wchar.h. |
7. | Can you combine the following two statements into one?
|
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss. |
8. | What is (void*)0? |
|||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss. |