putc macro — Writes a character
int putc(int c, FILE* stream)
The putc macro writes the character c, which must be cast to unsigned char, to stream.
putc
c
unsigned
char
stream
fputc function, putchar macro, wputc in <cwchar>
wputc
<cwchar>