/* breakstack2.c Jim Plank CS360 Memory Lecture October, 1996 */ #include extern end; extern etext; a() { char c; char iptr[10000000]; printf("&c = 0x%lx, iptr = 0x%x ... ", &c, iptr); fflush(stdout); c = iptr[0]; printf("ok\n"); } main() { printf("Calling a\n"); a(); }