-

Difference between revisions of "Functions HI-TECH C FSCANF"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>FSCANF</strong> ==SYNOPSIS== #include <stdio.h> int fscanf(FILE * stream, char * fmt, ...) ==DESCRIPTION== This routine performs formatted input from the spe...")
 
(No difference)

Latest revision as of 20:01, 31 July 2017

FSCANF

SYNOPSIS

#include  <stdio.h>

int fscanf(FILE * stream, char * fmt, ...)


DESCRIPTION

This routine performs formatted input from the specified stream. See scanf() for a full description of the behaviour of the routine. Vfscanf() is similar to fscanf() but takes a variable argument list pointer rather than a list of arguments. See the description of va_start() for more information on variable argument lists.

SEE ALSO

scanf, sscanf, fopen, fclose