#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
请赐教,谢谢~