puts(3) minix man page | unix.com

Man Page: puts

Operating Environment: minix

Section: 3

PUTS(3) 						     Library Functions Manual							   PUTS(3)

NAME
puts, fputs - put a string on a stream
SYNOPSIS
#include <stdio.h> int puts(char *s) int fputs(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 output stream. Neither routine copies the terminal null character.
SEE ALSO
fopen(3), gets(3), putc(3), printf(3), ferror(3), fread(3).
BUGS
Puts appends a newline, fputs does not, all in the name of backward compatibility. 7th Edition May 15, 1985 PUTS(3)
Related Man Pages
puts(3) - debian
fputc(3) - centos
fputs(3) - centos
putc(3) - centos
putchar(3) - centos
Similar Topics in the Unix Linux Community
limiting data inputs for the user
Need a shell script which takes two inputs and copy the files from one directory to other
Storing user inputs into a file
How to provide auto inputs for a sub-script within a script?
To print diamond asterisk pattern based on inputs