Synopsis
#include <stdio.h>
int ungetc(int c, FILE *stream);
Description
Pushes the character char (an unsigned char) onto the specified stream so that the next character is read.
#include <stdio.h>
int ungetc(int c, FILE *stream);
Pushes the character char (an unsigned char) onto the specified stream so that the next character is read.