How can I parse this and convert into integer values?
First, you have to get the data off the SD card, into an array. Then, you can use strtok() to extract the tokens, and atoi() to convert the tokens to integers, where appropriate.
How can I parse this and convert into integer values?
First, you have to get the data off the SD card, into an array. Then, you can use strtok() to extract the tokens, and atoi() to convert the tokens to integers, where appropriate.