Vidyalelo
C# Programming · Q46

Control Flow Statements in C Sharp

Programming · C# Programming · question 46

Q46

What will be the output of the following C# code? static void Main(string[] args) int i = 0, j = 0; l1: while (i < 2) i++; while (j < 3) Console.WriteLine("loop "); goto l1; Console.ReadLine();

A.
loop is printed infinite times
B.
loop
C.
loop loop
Answer
D.
Compile time error

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board