vscanf() Perform Formatted Input from Stdin
#include <stdio.h>
#include <stdarg.h>
int vscanf(format-string,param);
char *format-string; Format string
va_list param; Variable argument list
vscanf() reads data from 'stdin' and stores it in the locations given
by the address arguments from the va_arg array va_list 'param'.
See scanf() for a complete description of the format-string.
See va...() for a description of variable argument lists.
Seealso:
This page last updated on Fri Nov 30 10:48:32 MSK 2001
Copyright © 1992-2001, Vitaly Filatov, Moscow, Russia
Webmaster