1main ()
2{
3  printf ("%x, %x\n", (unsigned char) main, main);
4}
5
6foo (p)
7     char *p;
8{
9  p[0] = (char)foo;
10  p[1] = (char)foo;
11}
12