在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1错误代码 #include<stdio.h> int main(){ char a[]="hello"; char *p=a; for(int i=0;i<5;i++){ printf("%c",*p+i); } return 0; } 输出 hijkl -------------------------------- Process exited after 0.3297 seconds with return value 0 原因:指针p初始值为a[0],*p是h的地址,h的地址是ascll码104,而*p+1就是105就是i了(注意*优先级高于+) --- 2正确代码(其中之一) #include<stdio.h> int main(){ char a[]="hello"; char *p=a; for(int i=0;i<5;i++){ printf("%c",*(p+i)); } return 0; } 输出 hello -------------------------------- Process exited after 0.2415 seconds with return value 0 原因:指针p初始值为a[0],*(p+1)的地址是a[1],所以输出正确 正确代码2 #include<stdio.h> int main(){ char a[]="hello"; char *p=a; printf("%s",p); return 0; }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论