1 int
main(void)2 main(void) {
3 	int	x = 5;
4 	int	*p = &x;
5 	++*p;
6 	printf("%d\n", x);
7 	(*p)--;
8 	printf("%d\n", x);
9 	return 0;
10 }
11 
12