1 int
main(void)2 main(void) {
3 	char	buf[2][128];
4 	char	(*p)[128];
5 
6 	p = buf;
7 	(*p)[0] = 'h';
8 	(*p)[1] = '\0';
9 	puts(buf[0]);
10 	++p;
11 	strcpy(p[0], "tee-hee");
12 	puts(buf[1]);
13 }
14 
15