How do I read into an array a string with space in it, delimited with semicolons from a textfile in the C programming language?
***from textfile***
"My Record; My Second Record; My Third"
. . .
fopen ...
for(i = 0; i < 3; i++) {
fscanf_s(myFile, "%s", myRecords[i].title); /* this want read the records */
}
fclose...