Write character to stream (same as fputc)
int putc(int c, FILE *stream);
This function outputs 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 fputc)
int putc(int c, FILE *stream);
This function outputs the character c to the output stream pointed to by stream. Only the standard input/output stdout or stderr can be specified for stream.