-

Functions HI-TECH C FPUTS

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 19:51, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>FPUTS</strong> ==SYNOPSIS== #include <stdio.h> int fputs(char * s, FILE * stream) ==DESCRIPTION== The null-terminated string s is written to the stream. No n...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

FPUTS

SYNOPSIS

#include  <stdio.h>

int fputs(char * s, FILE * stream)


DESCRIPTION

The null-terminated string s is written to the stream. No newline is appended (cf. puts() ). The error return is EOF.

SEE ALSO

puts, fgets, fopen, fclose