Bk Feb 15th, 2019 1 because logical oerator returns only 1s and 0s and preferance is && operator thats reason answer was 1
Logical Operator and Pre-increment Operator
int x,y,z;
x=y=z=1;
z=++x||++y &&++z;
printf("%d,%d,%d",x,y,z);
return 0;
Related Answered Questions
Related Open Questions