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