Discussion :: Control Instructions - c#
-
Which of the following is the correct output for the C#.NET program given below?
int i = 20 ; for( ; ; ) { Console.Write(i + " "); if (i >= -10) i -= 4; else break; }
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment