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