A
Q. What will be the output of the following C code?
Code:
#include <stdio.h>
int main(){
int a = 11;
while (a < 20) {
printf("%d ", a);
a += 2;
}
return 0;
}
int main(){
int a = 11;
while (a < 20) {
printf("%d ", a);
a += 2;
}
return 0;
}
- Correct Answer - Option(A)
- Views: 18
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.