|
VMS Help CRTL, fprintf, Example *Conan The Librarian |
An example of a conversion specification follows:
#include <stdio.h>
main()
{
int temp = 4, temp2 = 17;
fprintf(stdout, "The answers are %d, and %d.", temp, temp2);
}
This example outputs the following to the stdout file:
The answers are 4, and 17.
|
|