This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.
#include <stdio.h>
int ungetc(int ch, FILE *f)
;
ungetc() pushes the single character ch back onto the input stream f. The next read from f reads that character.
ch