Write character to stream (same as putc)
int fputc(int c, FILE *stream);
This functionoutputs the character c to the output stream pointed to by stream. Only the standard input/output stdout or stderr can be specified for stream.
Write character to stream (same as putc)
int fputc(int c, FILE *stream);
This functionoutputs the character c to the output stream pointed to by stream. Only the standard input/output stdout or stderr can be specified for stream.