What will be the output of the following C# code?
static void Main(string[] args)
{
int x = 0;
while (x < 20)
{
while (x < 10)
{
if (x % 2 == 0)
{
Console.WriteLine(x);
}
x++;
}
}
Console.ReadLine();
}
static void Main(string[] args)
{
int x = 0;
while (x < 20)
{
while (x < 10)
{
if (x % 2 == 0)
{
Console.WriteLine(x);
}
x++;
}
}
Console.ReadLine();
}A. 1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
B. 0 2 4 6 8 10 12 14 16 18 20
C. 0 2 4 6 8
D. 0 2 4 6 8 10
Answer: Option C

Join The Discussion