PUTS.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. PUTS(3)                   Minix Programmer's Manual                    PUTS(3)
  2. NAME
  3.      puts, fputs - put a string on a stream
  4. SYNOPSIS
  5.      #include <stdio.h>
  6.      int puts(char *s)
  7.      int fputs(char *s, FILE *stream)
  8. DESCRIPTION
  9.      Puts copies the null-terminated string s to the  standard  output  stream
  10.      stdout and appends a newline character.
  11.      Fputs copies the null-terminated string s to the named output stream.
  12.      Neither routine copies the terminal null character.
  13. SEE ALSO
  14.      fopen(3), gets(3), putc(3), printf(3), ferror(3), fread(3).
  15. BUGS
  16.      Puts appends a newline, fputs does not,  all  in  the  name  of  backward
  17.      compatibility.
  18.                                 May 15, 1985                                 1