← Back to archive

Stdle #7 · 2026-06-13

What does this log?

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

#include <stdio.h>
int main(void) {
int a[4] = {7, 8, 9, 10};
int *p = a;
p = p + 2;
printf("%d %d\n", *p, *(p - 1));
return 0;
}
Pointers
4 attempts left

Answer & explanation