c c 將結構體讀入到檔案中,然後讀出

2021-06-07 17:39:37 字數 884 閱讀 6592

#include

#include

#include

typedef struct

stu,*pstu;

void write()

strcpy(stu1.name,"張三");

strcpy(stu1.num,"09111626");

stu1.age=19;

fwrite(&stu1,sizeof(stu),1,file);

fclose(file);

}void read()

stu stu2;

fread(&stu2,sizeof(stu),1,file);

fclose(file);

printf("name=%s,age=%d,num=%s\n",stu2.name,stu2.age,stu2.num);

}//void write()

//// pstu p;

// strcpy(p->name,"張三");

// strcpy(p->num,"09111626");

// //

//  p->age=19;

//// fwrite(p,sizeof(struct student),1,file);

//// fclose(file);

////

//}//

//void read()

////pstu p1;

// fread(p1,sizeof(struct student),1,file);

// fclose(file);

// printf("name=%s,age=%d,num=%s\n",p1->name,p1->age,p1->num);

//}void main()

將結構體資料儲存寫入到檔案中

利用系統介面,將結構體資料寫入到檔案中。file name copy.c author lifengyu created time 2018.8.13 include include include include include include struct student int main 定義...

Python 將檔案中的資料讀入到陣列中

最近在寫小 用到了python語言,我覺得python非常不錯,可以新增很多的元件為它服務。雖然現在還只是剛入門,但是它已經向我展示了自己的強大功能。今天遇到了乙個難題,如何把文件中的檔案以純陣列的方式讀取出來 用了很多方法,讀出來的陣列都是帶引號和換行的,就像這樣 最後發現了原來是需要把資料轉換成...

如何將 txt檔案讀入到陣列

格式是 intput.txt中的示例數字為 4 6 8 10 那麼問題來了,如何讀取這段數字,博主的思路是把這個讀入到陣列裡,然後乙個乙個調出來驗證猜想就好了,輸出到檔案也方便。但是,就是這樣乙個輸出到陣列,折騰了博主好久 博主很菜,勿噴。當用fgets 函式時,它每次只讀取乙個位元組,就是說,a ...