Unit Test: refentry.011
Name
printf, fprintf, sprintf — print formatted output.
Synopsis
#include <stdio.h>int printf(format, );
const char *format;
...;
| int fprintf( | strm, |
| format, | |
| ); |
| FILE * | strm |
| const char * | format |
int sprintf(s, format, );
char *s;
const char *format;
...;
Description
printf places output on the standard
output stream stdout.
…