易百教程

使用puts()函数将字符串文本输出到控制台窗口

puts()函数将文本流发送到标准输出设备。

下面是它的格式:

int puts(const char *s);

例如,

puts("text");

以下代码显示两行文本 -

#include <stdio.h> 

int main()
{ 
     puts("Hi,"); 
     puts("This is a test."); 
     return(0); 
}

执行上面示例代码,得到以下结果:

hema@ubuntu:~/book$ gcc -o puts-output-string puts-output-string.c
hema@ubuntu:~/book$ ./puts-output-string
Hi,
This is a test.