A
Q. What is the output of the following code?
Code:
int i = 0;
while (i < 3)
{
printf("%d", i);
i++;
}
while (i < 3)
{
printf("%d", i);
i++;
}
- Correct Answer - Option(A)
- Views: 18
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.