假設我有一個文件的讀取:閱讀使用C中的fscanf另一個新線
//it may contain more than 2 lines
12 6
abadafwg
現在假設我已經閱讀了第一行是這樣的:
char input[999];
while(!feof(fpin))
{
fscanf(fpin, " %[^\n]", input);
//do something here with these numbers
//should do something here to read 2nd line
}
這裏是我的問題,我該如何閱讀該文件的第二行? 請幫助QAQ
'fscanf(fpin,「%[^ \ n]」,input)'相同,但是有空格 – chux
什麼是「輸入」? – 0decimal0
@PHIfounder它的字符串 –