Q. What will be the output of the following C# code?
Code:
class Program
{
static void Main(string[] args)
{
int i ;
for ( i = 0; i < 5; i++)
{
int j = 0;
j += i;
Console. WriteLine(j);
}
Console. WriteLine(i);
Console. ReadLine();
}
}
β
Correct Answer: (B)
0, 1, 2, 3, 4, 5