When I pass an empty string to sscanf, it returns zero and it doesn't change the given variable.
char* ptr = "";
abc = sscanf(ptr, "%s", output);
// abc == 0
Can you let me know the way to work it out?
|
Also note that On success, the function returns the number of variables filled. This count can match the expected number of readings or fewer, even zero, if a matching failure happens. In the case of an input failure before any data could be successfully read, EOF is returned. Following code, compiled with MinGW (gcc-core 4.5.0-1)
outputs Good way of checking whether |
||||
|
|
outputI guess. 0 is the return value ofsscanf. – LihO Jun 1 '12 at 17:58