

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of following program:- int q, *p, n; q = 176; If the address of q is 2801 p = &q; and p is 2600 n = *p; printf(“%d”, n); |
A. | 2801 |
B. | 176 |
C. | 2600 |
D. | None of the above |
Answer» C. 2600 | |