指针:一个变量的地址
指针变量:专门存放变量地址的变量
char *str = “Hello”;
int a = 10;
int *pa = &a;
printf("d%\n",*pa);//*根据地址取出内容,&取地址;