What will be output of the following “c” code?
		
					

Loading

โœช 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;
}

A. -2
B. -1
C. 0
D. 1