#include #includeint main()
#include int main()
#include int main(void)
printf("%s\n", buf); // 在輸出時需要新增換行符
return 0;
}
#include int main(void)
while((c = fgetc(fp)) != eof)
fclose(fp);
return 0;
}
#include int main(void)
#include int main(void)
#include int main();
fputs("this is testing for fputs...\n", fp);
fputs(buf,fp);
fclose(fp);
#include #include int main(void)
fwrite(ch, strlen(ch)+1, 1, fp);
/*從檔案fp裡讀取100個位元組可用
fread(buffer,100,1,fp)
fread(buffer,50,2,fp)
fread(buffer,1,100,fp)
*/ fread(buf, strlen(ch) +1, 1, fp);
printf("%s\n", buf);
fclose(fp);
return 0;
}
//兩種使用方式寫法
fseek(fp,100l,seek_set);把fp指標移動到離檔案開頭100位元組處;
fseek(fp,100l,seek_cur);把fp指標移動到離檔案當前位置100位元組處;
fseek(fp,-100l,seek_end);把fp指標退回到離檔案結尾100位元組處。
fseek(fp,100l,0);把fp指標移動到離檔案開頭100位元組處;
fseek(fp,100l,1);把fp指標移動到離檔案當前位置100位元組處;
fseek(fp,-100l,2);把fp指標退回到離檔案結尾100位元組處。
幾個檔案操作函式
1.open 函式 功能描述 用於開啟或建立檔案,在開啟或建立檔案時可以指定檔案的屬性及使用者的許可權等各種引數。所需標頭檔案 include,include,include 函式原型 int open const char pathname,intflags,int perms 引數 pathna...
有關檔案操作的幾個函式
1.creat 1 函式的作用 建立,建立新檔案。2 函式的原型 int creat const char pathname,mode t mode 3 函式的引數 pathname 要建立的檔案路徑字串。如 home hello.c mode 建立檔案的許可權。4 函式的返回值 成功返回檔案描述符...
檔案操作的幾個基本函式
檔案操作中的函式要注意是對檔案進行操作,而不是對輸出螢幕進行操作 在對檔案進行操作前,要先開啟函式 fopen 1,對檔案進行寫入時有以下函式 fputc fputs fwrite fprintf 2,對檔案進行讀取時有以下函式 fgetc fgets fread fscanf 3,對檔案操作完成後...