fread函式和fwrite函式
fread(buffer,size,count,fp)
fwrite(buffer,size,count,fp)
fread 和fwrite函式用來讀寫乙個資料塊
size:讀寫的位元組數
count:要進行讀寫多少個size位元組的資料項
fp:檔案指標
例項:struct student_type
char name[10];
int num;
int age;
char addr[30;]
}stud[40];
存放40個學生的資料
for(i = 0;i<40;i++)
fread(&stu[i],sizeof(struct student_type),1,fp);
輸出到磁碟檔案
for(i = 0; i<40;i++)
fwrite(&stu[i],sizeof(struct student_type),1,fp);
Linux學習 管理檔案(2)
常用檔案管理命令 活動命令語法 建立目錄 mkdir directory 複製檔案 cp file new file 複製目錄及其內容 cp r directory new directory 移動或重新命名檔案或目錄 mv file new file 刪除檔案 rm file 刪除含有檔案的目錄 ...
NS2學習 看懂trace檔案(2)
ns use newtrace 使用新格式。語句在 ns trace all tracefd 之前 new trace格式定義 n node property i ip level packet information h next hop information m mac level packe...
thinkphp學習筆記2 入口檔案
在thinkphp中有兩個入口檔案,乙個是專案的入口檔案,是index.php在主目錄裡面,還有乙個是thinkphp框架的的入口檔案,放在框架目錄下面如 d thinkphp thinkphp,名字是thinkphp.php。thinkphp採用的是單一入口模式,所有的程式都是從專案入口檔案開始執...