1 int
main(void)2 main(void) {
3 	char	buf[2][128];
4 	char	(*p)[128];
5 
6 	p = buf;
7 	strcpy((++p)[0], "hello");
8 	puts(&buf[1][0]);
9 }
10 
11