Vidyalelo
C# Programming · Q71

Control Flow Statements in C Sharp

Programming · C# Programming · question 71

Q71

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
Answer
D.
10 9 8 7 6 5 4 3 2 1

Answer: Option C

Solution

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