将包含char的.txt文件中的数据存储到2d数组中

时间:2018-07-20 16:46:08

标签: c++

我正在尝试读取char txt文件并将值存储在2d数组中,但是我的控制台窗口未显示任何输出

enter code here#include <stdio.h>                           
#include<stdlib.h>
#include<iostream>
using namespace std;

int main(){
char A[10][10];
FILE *fp;
int i,j;
fp=fopen("DATA.txt","r");
if(fp == NULL)
 exit(1);

for(int i=0; i<10 ;i++){
for(int j=0; j<10; j++){
    cout<<A[i][j];
}
cout<<"\n";
}    
return 0;

}

0 个答案:

没有答案