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 num,i=0;
num=-++i+ ++-i;
printf("%d",num);
return 0;

}

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