Defined in header <cstdio> int vscanf( const char* format, va_list vlist ); (1) (since C++11) int vfscanf( std::FILE* stream, const char* format, va_list vlist ); (2) (since C++11) int vsscanf( const char* buffer, const char* format, va_list vlist ); (3) (since C++11)
Reads data from the a variety of sources, interprets it according to format and stores the results into locations defined by vlist.
1) Reads the data from stdin.
2) Reads the data from file str