โช 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;
}