定义一个指针变量
指针变量的使用如
int c = 76; int * pointer = &c;
则 *pointer 为 pointer 所指向的存储单元的内容,是变量C而不是数字76
另:指针变量也是变量,是变量就有地址。