Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>vfscanf() perform formatted input from a stream</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 vfscanf()               Perform Formatted Input from a Stream

 #include   <stdio.h>
 #include   <stdarg.h>

 int        vfscanf(stream,format-string,param);
 FILE       *stream;                     Pointer to input stream
 const char *format-string;              Format string
 va_list    param;                       Variable argument list

    vfscanf() reads data from the named input stream 'stream', converts
    the data according to the 'format-string', and stores them in
    locations given by address arguments from the va_arg array va_list
    'param'.  vfscanf() performs like scanf, but accepts address
    arguments from the 'param' argument and accepts its input from a
    named stream, rather than from stdin.

    See scanf() for a complete description of the 'format-string' and
    return value.

    See va_arg() for more information about variable argument lists.


See Also: scanf() va_arg()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson