✪ 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;
}