Header: stdio.h
Syntax:
extern int vfprintf
(
FILE *stream,
const char *format,
va_list arg
);
Purpose: This function is equivalent to fprintf, with the variable argument list replaced by arg, which has been initialised by the va_start macro (and possibly subsequent va_arg calls). The vfprintf function does not invoke the va_end function.
|
|
|