You give me a future, I love you the whole once
int *p1, *代表类型说明符
p1=&i;
int i2=*p1+1;*代表间接访问运算符
不能用数给指针变量赋值(P1=200),但可用0赋值,代表空指针,即不指向任何数据
数组名是一个指针常量,如int A[10],A++不允许。
指向一维数组的指针 int (*p)[3];
数组指针 int *p[3];
例子:分数化简