

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following does not initialize p to null (assuming variable declaration of n as int n=0;)? |
A. | int *p = &n &n; |
B. | int *p = n n; |
C. | int *p = &n; |
D. | All of above |
E. | None of these |
Answer» D. All of above | |