Question.7
A firmware GPS driver contains this parsing code:
char *fields[7];
int idx = 0;
char *tok = strtok(sentence, ",");
while (tok && idx < 7) {
fields[idx++] = tok;
tok = strtok(NULL, ",");
}
// Extract time: fields[1]
// Extract lat: fields[3], fields[4]What type of data is being parsed?