This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
int fputc(int ch, FILE *f);
fputc() writes a character to file f.
The integer value of ch. If an error occurs, fputc() returns EOF.
fputs()