December 2005
Beginner to intermediate
618 pages
20h 19m
English
fwscanf
Reads in a formatted data string of wide characters from a file
#include <stdio.h> #include <wchar.h> intfwscanf( FILE * restrictfp, const wchar_t * restrictformat, ... );
The fwscanf() function is
similar to wscanf(), except that
it reads its input from the file referenced by the first argument,
fp, rather than from stdin.
See the example for wscanf() in this
chapter.
Read now
Unlock full access