我正在借助fscanf()
. 有了fscanf()
我就可以从文件中提取矩阵。但我无法找出矩阵的列大小。
输入文件是:
12 3 -4
6 5 7
int main()
{
char arr[10],len;
int count=0;
FILE *input= fopen("input.txt", "r");
while(fscanf(input,"%s",arr) != EOF)
{
//fill into the output matrix.
}
}
但是如何在 的帮助下找出列的大小fscanf
?