Reads data from the stream and stores them according to parameter format into the locations pointed by the elements in the variable argument list identified by arg.
Syntax:int vfscanf ( FILE * stream, const char * format, va_list arg );
Example:#include
#include
void ReadStuff (FILE * stream, const char * format, ...)
{
va_list args;
va_start (args, format);
vfscanf (stream, format, args);
va_end (args);
}
int main ()
{
FILE * pFile;
int val;
char str[100];
pFile = fopen ("myfile.txt","r");
if (pFile!=NULL) {
ReadStuff ( pFile, " %s %d ", str, &val );
printf ("I have read %s and %d", str, val);
fclose (pFile);
}
return 0;
}
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 529 / 158802574. Delta: 0.00246 с