06.04.2013, 00:17
"Format specifier does not match parameter count" means that you have more or less parameters than specified.
This code will cause the same error:
Because there are more parameters (3 in total) than there are specifiers ("ii" are the specifiers, there are only two of them).
This code will cause the same error:
Код:
sscanf(string, "ii", integer1, integer2, integer3);

