#include int foo(){ // We'll restrict ourselves to here int A[1]; size_t B[1]; B[3] += 32; //A[???] = 8; A[8] = 8; // Not past here printf("Just called foo\n"); printf("Distance from main to B: %lx\n", &B - (size_t)&foo); printf("Address of foo: %lx\n", &foo); } int main(){ int a = 7; foo(); if(a != 7) printf("You win!!!\n"); else printf("You did not win yet\n"); return 0; }