补10.8

来源:互联网 发布:芦菲网络歌手 编辑:程序博客网 时间:2024/04/30 04:26

字符指针

#include<stdio.h>

main()

{char*ptr="This is a string";

char s[]="That is another string";

printf("%s\n",ptr);

printf("%s\n",s);


}

0 0