puts.3

来自「Unix操作系统minix 2.0源码」· 3 代码 · 共 44 行

3
44
字号
.\"	@(#)puts.3s	6.1 (Berkeley) 5/15/85.\".TH PUTS 3  "May 15, 1985".AT 3.SH NAMEputs, fputs \- put a string on a stream.SH SYNOPSIS.nf.ft B#include <stdio.h>int puts(char *\fIs\fP)int fputs(char *\fIs\fP, FILE *\fIstream\fP).ft P.fi.SH DESCRIPTION.B Putscopies the null-terminated string.I sto the standard output stream.B stdoutand appends anewline character..PP.B Fputscopies the null-terminated string.I sto the named output.IR stream ..PPNeither routine copies the terminal null character..SH "SEE ALSO".BR fopen (3),.BR gets (3),.BR putc (3),.BR printf (3),.BR ferror (3),.BR fread (3)..SH BUGS.B Putsappends a newline,.B fputsdoes not, all in the name of backward compatibility.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?