-

Difference between revisions of "Functions HI-TECH C GETS"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(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...")
 
(No difference)

Latest revision as of 20:23, 31 July 2017

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