MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { register const int p = 16; p = 17; printf("%d n", p); } |
| A. | Compilation Error |
| B. | 17 |
| C. | 16 |
| D. | Garbage value |
| E. | None of these |
| Answer» B. 17 | |