Q.

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;
}

A. it will print nothing
B. -3
C. -2
D. compiler error
Answer» D. compiler error
3.1k
0
Do you find this helpful?
21

Discussion

No comments yet

Related MCQs