-

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

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

Latest revision as of 22:58, 31 July 2017

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