puts
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdio.h> 中定义
|
||
int puts( char *str ); |
||
写入字符串
str
和一个换行符stdout
原文:
Writes character string
str
and a newline to stdout
目录 |
[编辑] 参数
str | - | 字符串被写入
|
[编辑] 返回值
非负值数目上成功或EOF否则
原文:
non-negative number on success or EOF otherwise
[编辑] 示例
#include <stdio.h> int main(int argc, char** argv) { puts("Hello World"); return 0; }
输出:
Hello World
[编辑] 另请参阅
将一个字符串写入一个文件流 原文: writes a character string to a file stream (函数) | |
打印格式化输出到stdout,文件流或缓冲区 原文: prints formatted output to stdout, a file stream or a buffer (函数) | |
C++ documentation for puts
|