-

Functions HI-TECH C PUTS

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 22:58, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>PUTS</strong> ==SYNOPSIS== #include <stdio.h> int puts(char * s) ==DESCRIPTION== <strong>Puts</strong>() writes the string s to the stdout stream, appen...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

PUTS

SYNOPSIS

#include  <stdio.h>

int puts(char * s)


DESCRIPTION

Puts() writes the string s to the stdout stream, appending a newline. The null terminating the string is not copied. EOF is returned on error.

SEE ALSO

fputs, gets, freopen, fclose