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