What will be the output of the following program in GCC compiler?
Practice Bitwise Operators –
What will be the output of the following program in GCC compiler?
#include <stdio.h>
int main(){
int a = 0xff;
if(a<<4>>12){
printf("left
");
}
else {
printf("right
");
}
return 0;
}