

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int *p, n = 15; p = &n; *p += 10; printf("%d, %d n", *p, n); } |
A. | 15 |
B. | 10 |
C. | 25, 25 |
D. | 15 10 |
E. | None of these |
Answer» D. 15 10 | |