1.

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

A. "Interview Mania" is printed one time
B. "Interview Mania" is printed 3 time
C. "Interview Mania" is printed infinite time
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found

Related MCQs