printf(%d\n",“hello world”);
输出的字符串的首地址,指针
此指针的类型是char型
char*str=“hello dunkai”;存的为地址
printf("%s\n",str);
星号※“hello world”;对地址的间接访问,可视为数组
printf(“星号※“helloworld”=%c\n”,*“helliworld”);
数组得下标访问与简介访问可以互相通用
指针和数组的区别
int arr3(2)(3)[4]={0,1,2,3};{前两个小括号为中括号)
arr3的类型是什么数组指针看做一维数组
intarr4[4]={&a,&b,&c,NULL};
charstarr[4]={“helloworld”,“china”,“123456”,“yellow”};
for(int i=0;i<4;i++)
{
printf("%s\n",strarr);
}