Discussion :: 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 + " "); }
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment