Header: stdio.h
Syntax:
extern int vfscanf
(
FILE *stream,
const char *format,
va_list arg
);
Purpose: This function reads input from stream under control of the format string, with the variable argument list replaced by arg, which has been initialised by the va_start macro (and possibly subsequent va_arg calls). The vfscanf function does not invoke the va_end function.
|
|
|