想对文件进行追加的写 有什么办法?
在一个文件中 多次写入
------解决方案--------------------
- C/C++ code
#include <stdio.h>
FILE * fp;
int main(void)
{
fp = fopen("fname.txt", "a");
if (fp == NULL) {
printf("Fail to Open File!\n");
exit(1);
}
else
fprintf(fp, "%s", "what ever you wanna to input!");
return 0;
}