C库函数int puts(const char *str)将字符串写入stdout,但不包括空字符。 换行符附加到换行符。
以下是puts()函数的声明。
int puts(const char *str)
str - 这是要写入的C字符串。
如果成功,则返回非负值。 出错时,该函数返回EOF。
以下示例显示了puts()函数的用法。
#include <stdio.h>
#include <string.h>
int main () {
char str1[15];
char str2[15];
strcpy(str1, "iowiki");
strcpy(str2, "compileonline");
puts(str1);
puts(str2);
return(0);
}
让我们编译并运行上述程序以产生以下结果 -
iowiki
compileonline