Hey! I just saw a program written in C which contained this statement.
int a;
a = 5 <= 8 && 6 != 5;
printf("%d", a);
The value of 'a' obtained was 1. How is it possible? Can somebody explain me the second line?
Hey! I just saw a program written in C which contained this statement.
int a;
a = 5 <= 8 && 6 != 5;
printf("%d", a);
The value of 'a' obtained was 1. How is it possible? Can somebody explain me the second line?