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