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

		
					

Loading

โœช Choose the correct option.

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

#include  
int main() {
float a=0.7;
if(a < 0.7){
printf("C ");
}
else {
printf("C++ ");
}
return 0;
}

A. C++
B. C
C. Compiler Error
D. Run Time Error