我需要將文本文件中的行保存到一個字符串中,然後將它們插入到數據結構中,但是使用我的解決方案(我認爲它非常糟糕) - 我只會將文字保存到我的line
中。將文件中的行保存到新字符串中。 C
FILE * ifile = fopen("input.txt", "r");
char line[256];
while(fscanf(ifile, "%s\n", line) == 1) {
//inserting "line" into data structure here - no problem with that one
}
'「%s \ n」' - >'「%[^ \ n]」' –