MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int n = 5, L; if (n == 5) goto Read; Read: printf("%d ", n); printf("Interview Mania"); } |
| A. | 5 |
| B. | Interview Mania |
| C. | 5 Interview Mania |
| D. | Interview Mania 5 |
| E. | None of these |
| Answer» D. Interview Mania 5 | |