I'm trying to read the content of a string, inside a multidimensional array...the problem is, when I do this, the sscanf continues reading only the first character only...
On my string I have this:
A1+A2+A3+A4.
I want to read %c%d , I can read this if it was only A1, but when this case happens, it only reads A1...
I did this to read only the first character:
if(sscanf(array[line][colum], "%c%d", &colum, %line) == 2){
printf("COL: %c, Line: %d", colum, line);
What can I do to read the entire string?