PUTS(3S) DOMAIN/IX BSD4.2 PUTS(3S)
NAME
puts, fputs - put a string on a stream
USAGE
#include <stdio.h>
puts(s)
char *s;
fputs(s, stream)
char *s;
FILE *stream;
DESCRIPTION
Puts copies the null-terminated string s to the standard
output stream stdout and appends a newline character.
Fputs copies the null-terminated string s to the named out-
put stream.
Neither routine copies the terminal null character.
RELATED INFORMATION
fopen(3S), gets(3S), putc(3S), printf(3S), ferror(3S),
fread(3S)
Printed 12/4/86 PUTS-1