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