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;
}
β
Correct Answer: (A)
11 13 15 17 19