MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { int k = 0, L = 0; while (Level1: k < 5) { k++; while (L < 6) { printf("Interveiw Maina n"); goto Level1; } } } |
| A. | "Interveiw Maina" is printed one time |
| B. | "Interveiw Maina" is printed infinite time |
| C. | Compilation Error |
| D. | Garbage value |
| E. | None of these |
| Answer» D. Garbage value | |