|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 空羊羊 于 2020-12-21 18:41 编辑
void main(void){
int arr[5][5]={0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,3,3,3,3,4,4,4,4,4};
int brr[5][5];
FILE *fp;
if((fp=fopen("a.txt","w"))==NULL){
printf("Fail to open the file.\n");
}
fwrite(arr, 25*sizeof(int), 1, fp);
fclose(fp);
if((fp=fopen("a.txt","w"))==NULL){
printf("Fail to open the file.\n");
}
fread(brr, 25*sizeof(int), 1, fp);
fclose(fp);
printf("%d", brr[1][1]);
}
void main(void)
{
int arr[5][5]={0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,3,3,3,3,4,4,4,4,4};
int brr[5][5];
FILE *fp;
//修改文件打开方式
if((fp=fopen("a.txt","wb"))==NULL){
printf("Fail to open the file.\n");
}
fwrite(arr, 25*sizeof(int), 1, fp);
fclose(fp);
if((fp=fopen("a.txt","rb"))==NULL){
printf("Fail to open the file.\n");
}
//修改文件打开方式
fread(brr, 25*sizeof(int), 1, fp);
fclose(fp);
printf("%d", brr[1][1]);
return;
}
|
|