头文件:#include<stdio.h>
puts()函数用于将一字符串放到标准输出流(stdout)中,并在最后增加换行符 '\n',其函数原型如下:
int puts(char *string);
【参数】string为要输出的字符串。
【返回值】输出成功返回非0值,否则返回0。
puts()从string的开头往stdout中输出字符,直到遇见结束标志 '\0','\0'不会被输出到stdout。
请对比分析fputs()函数:C语言fputs()函数
【实例】看一个简单的例子,直接将字符串输出,代码如下。
#include<stdio.h>
int main(void)
{
char str[100] = "The string come from puts";
puts(str);
getch();
return 0;
}
程序中puts()函数的作用与语句“printf("%s\n",s);的作用相同,可以认为puts()是printf()函数的简化版。