Predict the output of following “C” code:

			  		

Loading

โœช Choose the correct option.

Predict the output of following “C” code:


void main()
{
int i=10,j=2,k=0,m;
m=++i&&++j&&++k;
printf("%d,%d,%d,%d",i,j,k,m);
}

A. 11,3,1,1
B. 11,2,0,1
C. 11,3,1,0
D. 10,2,0,1