C语言读入txt代码#include #include int main() { int a[2][3] = {5,2,8,4,9,7}; //比如说你要把它存到一个文件中。 char c='\n'; //定义换行转义字符 //现在你的源程序的目录下建立一个比如说是data.txt文件 ,也可以不建,程序会自动新建data.txt文件 FILE *fp; //定义文件指针 if ((fp = fopen("f:\\data.txt","w"))==NULL) { printf("the file can