Question 1  of   13

What will be the output of the following code? for (;;) { Console.WriteLine("for(;;)"); break; }

A. for (;;)
B. [Infinite loop]
C. [Compiler Error]
D. [No output]