Everything

wprintf


Converts data according to a format and outputs it to the standard output file (stdout).

[Format]

#include <stdio.h>

#include <wchar.h>

long wprintf(const wchar_t *restrict control [, arg]...);

[Parameters]

control Pointer to string indicating format

arg,... Data to be output according to format

[Return values]

Normal: Number of wide characters converted and output

Abnormal: Negative value

[Remarks]

The wprintf function is the wide-character version of printf function.