#include <stdio.h>
int main()
{
char *buf = "hello linux";
while(buf != NULL){
printf("%c",*buf++);
}
return 0;
}
这个程序哪里有错?
最新推荐文章于 2024-11-09 10:45:01 发布
#include <stdio.h>
int main()
{
char *buf = "hello linux";
while(buf != NULL){
printf("%c",*buf++);
}
return 0;
}