Output character string to standard output stream
Remark | These functions are not supported by the debugging functions which CS+ provides. |
[Classification]
Standard library
[Syntax]
#include <stdio.h>
int puts(const char *s);
[Return value]
0 is returned.
Error return does not occur.
[Description]
This function outputs the string s to the standard input/output stdout. The end-of-string null character is not output, but a new-line character is output in its place.