Writes formatted wide-character output to stdout.
#include <wchar.h>
int wprintf (
const wchar_t *format,
...);
(IN) Points to the format control string. See Section 12.4, Wide-Character Print Format Control Strings.
(IN) Points to an argument for a conversion specifier. The number of arguments is determined by the format string.
If successful, returns the number of characters written. Otherwise, returns a negative value and sets errno to one of the following:
The wprintf function writes wide-character output to the file designated by stdout under control of the format parameter.