08.02.2011, 02:23
it is just a warning, and suggests that you should check your string lengths.
eg your name variable is 24, and you told sscanf that it is 23, I would start there.
To find out exactly where the warning is occuring, try adding the parameters to the sscanf specifiers one at a time.
Particularly with the array specifier, as the specifier a<i>[2] might require an array of size [3] to work properly ( not sure about this but it is worth looking at )
eg your name variable is 24, and you told sscanf that it is 23, I would start there.
To find out exactly where the warning is occuring, try adding the parameters to the sscanf specifiers one at a time.
Particularly with the array specifier, as the specifier a<i>[2] might require an array of size [3] to work properly ( not sure about this but it is worth looking at )