Performs formatted output from the standard output (stdout). See Chapter 2 for information on format specifiers.
#include <wchar.h> int wprintf (const wchar_t *format, . . . );
If no conversion specifications are given, the output sources can be omitted. Otherwise, the function calls must have exactly as many output sources as there are conversion specifications, and the conversion specifications must match the types of the output sources.
Conversion specifications are matched to output sources in left-to- right order. Excess output pointers, if any, are ignored.
n | The number of wide characters written. |
Negative value | Indicates an error. The function sets errno to one of the
following:
The function can also set errno to the following as a result of errors returned from the I/O subsystem:
|