-

Changes

Jump to: navigation, search

Functions HI-TECH C UNGETC

499 bytes added, 00:20, 1 August 2017
Created page with "<strong>UNGETC</strong> ==SYNOPSIS== #include <stdio.h> int ungetc(int c, FILE * stream) ==DESCRIPTION== <strong>Ungetc</strong>() will attempt to push back the charac..."
<strong>UNGETC</strong>
==SYNOPSIS==

#include <stdio.h>

int ungetc(int c, FILE * stream)


==DESCRIPTION==
<strong>Ungetc</strong>() will attempt to push back the character c onto
the named stream, such that a subsequent <strong>getc</strong>() operation will return the character. At most one level of
pushback will be allowed, and if the stream is not buffered, even this may not be possible. EOF is returned
if the <strong>ungetc</strong>() could not be performed.

==SEE ALSO==

getc

Navigation menu