#define INTPTR1 int*
typedef int* INTPTR2;
INTPTR1 p1, p2;
INTPTR2 p3, p4;
含义分别为:
声明一个指针变量p1和一个整型变量p2
声明两个指针变量p3、p4