Explain the following java code sample ?

Int i=0,j=1;
if((i++==1)&&(j++==2))
i=42;
printf("i="+i+" j="+j);

Output : i=1 j=1

Questions by mikerich135   answers by mikerich135

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions