MCQOPTIONS
Saved Bookmarks
| 1. |
Comment on the output of this C code? #include void main() { int k = 4; int *const p = &k; int r = 3; p = &r; printf("%d", p); } |
| A. | Address of k |
| B. | Address of r |
| C. | Compile time error |
| D. | Adress of k + address of r |
| Answer» D. Adress of k + address of r | |