-

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

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>FPUTC</strong> ==SYNOPSIS== #include <stdio.h> int fputc(int c, FILE * stream) ==DESCRIPTION== The character c is written to the supplied stream. This is the...")
(No difference)

Revision as of 19:50, 31 July 2017

FPUTC

SYNOPSIS

#include  <stdio.h>

int fputc(int c, FILE * stream)


DESCRIPTION

The character c is written to the supplied stream. This is the non-macro version of _�p_�u_�t_�c(). The character is returned if it was successfully written, EOF is returned otherwise. Note that "written to the stream" may mean only placing the character in the buffer associated with the stream.

SEE ALSO

putc, fgetc, fopen, fflush