What will be the output of the below C program.


Loading

โœช Choose the correct option.

What will be the output of the below C program.


#include

int main()

{

int i = 0;

for(i = 3; i < 15; i + = 3)

{

print{("%d", i);

++i;

}

return 0;

}

A. 3 6 9 12
B. 3 6 9 12 15
C. 40727
D. 3 7 11 15