This is a File I/O function. It is not implemented in the Compiler.
#include <stdio.h>
int fputs(const char *s, FILE *f);
fputs() writes the zero-terminated string s to file f (without the terminating '\0'.
EOF, if there was an error; zero otherwise.