祝大家节日快乐 请教一个关于写文件的问题
想对文件进行追加的写 有什么办法?
在一个文件中 多次写入
[解决办法]
#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;
}