sscanf()
Syntax:
#include <stdio.h> int sscanf( const char *buffer, const char *format, ... );
Description:
The function sscanf() is just like |scanf()|, except that the input is read from buffer.
Related Topics:
scanf(), fscanf()
#include <stdio.h> int sscanf( const char *buffer, const char *format, ... );