Vidyalelo
C# Programming · Q81

Control Flow Statements in C Sharp

Programming · C# Programming · question 81

Q81

What will be the output of the following C# code? static void Main(string[] args) int i = 5; for (; Convert.ToBoolean(Convert.ToInt32(i)); Console.WriteLine(i--)) ; Console.ReadLine();

A.
4 3 2 1
B.
3 2 1
C.
5 4 3 2 1
Answer
D.
2 1

Answer: Option C

Solution

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