1 int
main(void)2 main(void) {
3 #if 0
4 	struct lol {
5 		int	x;
6 	};
7 #endif
8 	char	stuff[5][128];
9 #if 0
10 	struct lol l;
11 	struct lol *p;
12 	p = &l;
13 	p->x = 1337;
14 	printf("%d\n", p->x);
15 #endif
16 	stuff[3][2] = 69;
17 	printf("%d\n", stuff[3][2]);
18 }
19 
20 
21