|
|
|
Exercise"Nothing in life is to be feared, it is only to be understood."
- Marie Curie
|
| 6. |
What would be the equivalent pointer expression for referring the array element a[i][j][k][l] |
| A. |
((((a+i)+j)+k)+l) | B. |
*(*(*(*(a+i)+j)+k)+l) | | C. |
(((a+i)+j)+k+l) | D. |
((a+i)+j+k+l) |
Answer: Option B
Explanation:
No answer description available for this question. Let us discuss.
|
| 7. |
A pointer is |
| A. |
A keyword used to create variables | | B. |
A variable that stores address of an instruction | | C. |
A variable that stores address of other variable | | D. |
All of the above |
Answer: Option E
Explanation:
No answer description available for this question. Let us discuss.
|
| 8. |
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.
|
|
|