I am writing simple program in C and I can't see why:
printf("%d\n", 1 == 1 == 1);
printf("%d\n", 1 == 1);
printf("%d\n", 0 == 0 == 0);
printf("%d\n", 0 == 0);
Gives:
1
1
0
1
I'm used to Python so all this is new and strange to me.
(As an aside who was the inventor?)