Name
sscanf function — Reads formatted data from a string
Synopsis
int sscanf(const char* s, const char* format, ...)
The sscanf
function is like
fscanf
, but instead of reading
from an open file, it "reads" characters from the string s
. See fscanf
for a description of the format
parameter.