#include char msg[]="hello, world"; static char buf[4092]; static int x1; static int x2; int main() { buf[0]=0; x1 = 5; x2 = 6; printf("%s\n", msg); printf("main() is @ %08x\n", &main); printf("buf = 0x%x, x1 @ 0x%x, x2 @ 0x%x\n", buf, &x1, &x2); return 0; }