putc
Putc is a standard C library function used to write a single character to a file stream. It is declared in stdio.h and is part of the C standard I/O facilities. The typical prototype is int putc(int ch, FILE *stream).
Behavior and return value: putc converts the given integer ch to unsigned char and writes that character
Relation to related functions: putc is intended to have the same effect as fputc. In many implementations,
Usage considerations: Because putc may be implemented as a macro, programmers should be aware of potential