What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main(){
int i;
for(i=1;i++<=5;printf("%d ",i));
return 0;
}

A. 2 3 4 5 6
B. 1 2 3 4 5
C. 1 3 5 6
D. compiler error