指针始终存储整数值即地址,因此我们需要使用不同的数据类型声明它们.
喜欢
int a=3,*p=&a; char c=r,*cha=&r;
为什么我们不能这样做
int *c; char r=a; c=&r;
c pointers
c ×1
pointers ×1