← Back to archive

Stdle #63 · numbers · 2026-08-08

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;
unsigned b = 4;
printf("%u\n", a * b);
return 0;
}
Numbers
4 attempts left

Answer & explanation