Home » C# Programming » Operators

What will be the output of the C#.NET code snippet given below? int i, j = 1, k; for (i = 0; i < 5; i++) { k = j++ + ++j; Console.Write(k + " "); }

Next →

Discussion & Comments

No comments yet. Be the first to comment!