Difference between revisions of "GDN:printf"
| Line 12: | Line 12: | ||
==Prototype== | ==Prototype== | ||
| − | < | + | <source lang="c">int printf (const char *template, ...)</source> |
Latest revision as of 12:52, 28 October 2013
The printf function prints the optional arguments under the control of the template string template to the stream stdout. It returns the number of characters printed, or a negative value if there was an output error.
Contents
Prototype
<source lang="c">int printf (const char *template, ...)</source>
| Header | stdio.h |
|---|---|
| Supported Since | C90 |