← Back to archive

Stdle #57 · numbers · 2026-08-02

What does this C snippet output?

A past puzzle — fully playable. 4 attempts, hints on wrong guesses.

#include <stdio.h>
int main(void) {
unsigned u = 7;
printf("%d\n", (-1 < u) == (-1 < 1));
return 0;
}
Numbers
4 attempts left

Answer & explanation