Examveda

What will be the output of the following C# code?
static void Main(string[] args)
{
    int i = 10 , j = 0;
    label:
    i--;
    if ( i > 0)
    {
        Console.WriteLine(i+ " ");
        goto label;
    }
    Console.ReadLine();
}

A. 1 2 3 4 5 6 7 8 9 10

B. 10 9 8 7 6 5 4 3 2 1 0

C. 9 8 7 6 5 4 3 2 1

D. 10 9 8 7 6 5 4 3 2 1

Answer: Option C


Join The Discussion

Related Questions on Control Flow Statements in C Sharp