MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int k = 2; if (k == 2) { goto Lavel; } Lavel: printf("Interview Mania"); } |
| A. | Compilation Error |
| B. | Interview Mania |
| C. | Garbage value |
| D. | Runtime Error |
| E. | None of these |
| Answer» C. Garbage value | |