1 2 3 4 5 6 7 8
int main() { volatile int *mem = (int *)0x200; *mem = 24; for (int i = 0; i < 8; ++i) *mem += 2; return *mem; }