Q. What is the output of C Program.?
Code:int main()
{
int a=0, b=0;
while(++a < 4)
printf("%d ", a);
while(b++ < 4)
printf("%d ", b);
return 0;
}
β
Correct Answer: (B)
1 2 3 1 2 3 4