Stdle #44 · comparisons · 2026-07-20
What does this C snippet output?
A past puzzle — fully playable. 4 attempts, hints on wrong guesses.
#include <stdio.h>int main(void) { int a = 2, b = 3, c = 4; int r = a < b == b < c; printf("%d\n", r); return 0;}Comparisons