C语言如何将一个txt文件中的数据读到一个二维数组中

#include "stdafx.h"
#include<stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
FILE *fp;
if((fp=fopen("E:\\test\\tt.txt","r"))==NULL){
printf("cannot open file!");
return 0;
}
char a[2][6];
for(int i=0;i<2;i++){
for(int j=0;j<6;j++){
fscanf(fp,"%c",&a[i][j]);
printf("%c",a[i][j]);
j++;
}
i++;
}
getchar();
}

我设置的txt文件内容是 1 2 3 4 5 6
7 8 9 10 11 12
为什么最后输出只是1 2

请赐教,谢谢~

第1个回答  2014-09-24
我认为printf("%c",a[i][j]);后的 j++;及i++;要去掉,另外fscanf(fp,"%c",&a[i][j]);改为fscanf(fp," %c",&a[i][j]);即" %c“改成"(空格)%c"本回答被提问者采纳
相似回答