1.

What will be the output of the following C code?#include <stdio.h> int main() { int k = 0, L = 0; while (k < 3) { Level1 : k++; while (L < 4) { printf("Interview Mania"); goto Level1; } } }

A. Interview Mania
B. "Interview Mania" is printed 4 times
C. Compilation Error
D. "Interview Mania" is printed infinite times
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs