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