-

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

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

Latest revision as of 19:51, 31 July 2017

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