Unit Test: refentry.013
This refentry has no title but does have
refdescriptor.
Name
print* — 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.
…