fputs()

This is a File I/O function. It is not implemented in the Compiler.

Syntax
  #include <stdio.h>

  
  int fputs(const char *s, FILE *f);

  
Description

fputs() writes the zero-terminated string s to file f (without the terminating '\0'.

Return

EOF, if there was an error; zero otherwise.

See also

fputc()