A
Q. What will be printed?
Code:
int x = 0;
while(x < 3)
{
x++;
}
Console.WriteLine(x);
while(x < 3)
{
x++;
}
Console.WriteLine(x);
- Correct Answer - Option(B)
- Views: 1
- Filed under category .NET Programming
- Hashtags:
Discusssion
Login to discuss.