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

Loading

โœช Choose the correct option.

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

#include 
int main() {
int x = 3;
float y = 3.0;
if(x == y){
printf("x and y are equal");
}
else {
printf("x and y are not equal");
}
return 0;
}

A. x and y are equal
B. x and y are not equal
C. Un-predictable
D. No Output