Difference between revisions of "cpp/io/c/puts"
From cppreference.com
m (r2.7.3) (Robot: Adding de, es, it, pt, ru) |
m (Shorten template names. Use {{lc}} where appropriate.) |
||
Line 7: | Line 7: | ||
===Parameters=== | ===Parameters=== | ||
− | {{ | + | {{par begin}} |
− | {{ | + | {{par | str | character string to be written}} |
− | {{ | + | {{par end}} |
===Return value=== | ===Return value=== | ||
− | Non-negative number on success or {{ | + | Non-negative number on success or {{lc|EOF}} otherwise |
===See also=== | ===See also=== | ||
− | {{ | + | {{dsc begin}} |
− | {{ | + | {{dsc inc | cpp/io/c/dcl list fputs}} |
− | {{ | + | {{dsc inc | cpp/io/c/dcl list fprintf}} |
− | {{ | + | {{dsc see c | c/io/puts}} |
− | {{ | + | {{dsc end}} |
[[de:cpp/io/c/puts]] | [[de:cpp/io/c/puts]] |
Revision as of 18:54, 31 May 2013
Defined in header <cstdio>
|
||
int puts( char *str ); |
||
Writes character string str
and a newline to stdout
Parameters
str | - | character string to be written |
Return value
Non-negative number on success or EOF otherwise
See also
C documentation for puts
|