假设我有一个文件要阅读:
//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