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