adplus-dvertising
frame-decoration

Question

Select the output for the following set of code :
static void Main(string[] args)
  {
      int i = 0, j = 0;
      l1: while (i < 2)
      {  
          i++;
          while (j < 3)
          {
              Console.WriteLine("loop\n");
              goto l1;
          }
       }
      Console.ReadLine();
  }

a.

loop is printed infinite times

b.

loop

c.

loop loop

d.

Compile time error

Answer: (c).loop loop

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Select the output for the following set of code :