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