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