puts()

This is a file I/O function, also hardware dependent. It is not implemented in this Compiler.

Syntax
  #include <stdio.h>
  
  int puts(const char *s);

  
Description

puts() writes string s followed by a newline ( \n) to stdout.

Return

EOF, if an error occurred; zero otherwise.

See also

fputc()

putc()