โช Choose the correct option.
What will be the output of the following program on GCC?
#include
void main(){
int a=2;
if(a==2){
a=~a+2<<1;
printf("%d",a);
}
else{
break;
}
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
void main(){
int a=2;
if(a==2){
a=~a+2<<1;
printf("%d",a);
}
else{
break;
}
}