fputs


Output character string to stream

Remark

These functions are not supported by the debugging functions which CS+ provides.

[Classification]

Standard library

[Syntax]

#include <stdio.h>

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

[Return value]

0 is returned.

Error return does not occur.

[Description]

This function outputs the string s to the output stream pointed to by stream. The end-of-string null character is not output. Only the standard input/output stdout or stderr can be specified for stream.