This is a file I/O function, also hardware dependent. It is not implemented in this 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 occurred, fputc() returns EOF.
fputs()