fwscanf
fwscanf is a C standard library function that reads formatted input from a FILE* stream using wide-character formatting. It is the wide-character counterpart to fscanf and is used when working with wide-character data. The function is declared in stdio.h and uses a format string of type const wchar_t* to parse input from the given file stream.
Prototype and behavior: int fwscanf(FILE *stream, const wchar_t *format, ...); The format string specifies the expected input
Usage notes: The stream must be suitable for wide-character IO (the stream orientation and locale influence
---