Synopsis
#include <stdio.h>
int putc(int c, FILE *stream);
Description
- Writes a character (an unsigned char) specified by the argument char to the specified stream and advances the position indicator
- for the stream.
#include <stdio.h>
int putc(int c, FILE *stream);