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(0.7 > a){
printf("Hi ");
}
else {
printf("Hello ");
}
return 0;
}

A. Hi
B. Hello
C. Hi Hello
D. None of these

Leave a Comment