MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? void main() { int a[3] = {1, 2, 3}; int *p = a; int *r = &p; printf("%d", (**r)); } |
| A. | 1 |
| B. | Compile time error |
| C. | Address of a |
| D. | Junk value |
| Answer» C. Address of a | |