What will be output if you will compile and execute the following c code? #include<stdio.h>
int main(){
int a=2;
if(a==2){
a=~a+2<<1;
printf("%d",a);
}
else{
break;
} return 0;1. it will print nothing
2.-3
3.-2
4.compiler error
Posted Date:-2022-07-06 13:37:56