Given file with the only line:
001005023000.0028
How can I scan this file (file.txt) and create structure like this:
a=001 b=005 c=02 d=3000.00 e=28
I want to do it with fscanf, but my problem it's that in this line don't exist spaces, and thus, I don't know what is the format that I need to write in fscanf(..)
I've seen this and still I don't understand how to do it.