โช 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;
}
What will be the output of the following program in GCC compiler?
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;
}