当前位置: 代码迷 >> C语言 >> [求助]c语言fputc()文件处理怎么没效果
  详细解决方案

[求助]c语言fputc()文件处理怎么没效果

热度:208   发布时间:2007-10-11 16:50:20.0
谢谢9楼的
fseek(p,0,SEEK_CUR);
意思是 指针在当前位子移动0位,没什么意义的操作,为什么就有效了呢,很奇怪.

关于r+ 以下引用帮助

"r"

Opens for reading. If the file does not exist or cannot be found, the fopen call fails.

"w"

Opens an empty file for writing. If the given file exists, its contents are destroyed.

"a"

Opens for writing at the end of the file (appending) without removing the EOF marker before writing new data to the file; creates the file first if it doesn’t exist.

"r+"

Opens for both reading and writing. (The file must exist.)

"w+"

Opens an empty file for both reading and writing. If the given file exists, its contents are destroyed.

"a+"

Opens for reading and appending; the appending operation includes the removal of the EOF marker before new data is written to the file and the EOF marker is restored after writing is complete; creates the file first if it doesn’t exist.


----------------解决方案--------------------------------------------------------