fputs()

This is a file I/O function, also hardware dependent. It is not implemented in this 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 an error occurred; zero otherwise.

See also

fputc()