Home » C# Programming » Control Instructions

What will be the output of the code snippet given below? int i; for(i = 0; i<=10; i++) { if(i == 4) { Console.Write(i + " "); continue; } else if (i != 4) Console.Write(i + " "); else break; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!