Discussion :: Control Instructions - c#
-
What will be the output of the code snippet given below?
int i; for(i = 0; i10; i++) { if(i == 4) { Console.Write(i + " "); continue; } else if (i != 4) Console.Write(i + " "); else break; }
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment