-

Functions HI-TECH C GETS

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 20:23, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>GETS</strong> ==SYNOPSIS== #include <stdio.h> char * gets(char * s) ==DESCRIPTION== <strong>Gets</strong>() reads a line from standard input into the buffer at...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

GETS

SYNOPSIS

#include  <stdio.h>

char * gets(char * s)


DESCRIPTION

Gets() reads a line from standard input into the buffer at s, deleting the newline (cf. fgets() ). The buffer is null terminated. It returns its argument, or NULL on end-of-file.

SEE ALSO

fgets, freopen