Как мне прочитать в массив строку с пробелом в ней, разделенную точками с запятой из текстового файла на языке программирования C?
***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...