MicrOS
|
Functions | |
int | printf (const char *format,...) |
Print formatted data to stdout. More... | |
int printf | ( | const char * | format, |
... | |||
) |
Print formatted data to stdout.
Writes the C string pointed by format to the standard output (stdout). If format includes format specifiers (subsequences beginning with %), the additional arguments following format are formatted and inserted in the resulting string replacing their respective specifiers.
format | String that contains text to be written to stdout. Can contain embedded format specifiers. |
... | Additional arguments |