-

Functions HI-TECH C FSCANF

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 20:01, 31 July 2017 by Kumokosi (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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