โช Choose the correct option.
What will be output of the following “c” code?
#include
int main(){
int x,i=2;
x=~-!++i;
printf("%d",x);
return 0;
}
#include
int main(){
int x,i=2;
x=~-!++i;
printf("%d",x);
return 0;
}
#include
int main(){
int x,i=2;
x=~-!++i;
printf("%d",x);
return 0;
}