โช Choose the correct option.
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 + " ");
}
What will be the output of the C#.NET code snippet given below?
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 + " ");
}