在输出字符串的时候要使用:printf(“%s”,字符数组名字);或者puts(字符数组名字);。 puts(字符数组名字);这个怎么用??
#include <stdio.h>
int main()
{
char str[128] = "Hello 虬龙 !";
puts(str);
return 0;
}