Stdle #28 · comparisons · 2026-07-04
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 = 10, b = 4; int r = a - b - 1; printf("%d\n", r); return 0;}Comparisons