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

Loading

โœช Choose the correct option.

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

#include   
int main(){
int a = 0xff;
if(a<<4>>12){
printf("left ");
}
else {
printf("right ");
}
return 0;
}

A. right
B. left
C. Compiler error
D. No

Leave a Comment