what is deference between following two for loop statements for(y=1;y<10;y++) x=y; and for(y=1;(x=y)<10;y++);
sir, i have completed my first assignment.
Hi! i have problem with these expressions:- y=z=4; x=y==z; printf(“%d,”x); x==(y=z);printf(“%d”,x); what is value of x in these two printf statement?