高分悬赏
1 #include<stdio.h>2 #include<stdlib.h>
3 #include<string.h>
10 int main(){
12 FILE* fp = fopen("a.txt","a");
13 if(fp == NULL)
14 {
15 perror("fopen");
16 exit(0);
17 }
18 while(1){
19 char str[100] = {};
20 fgets(str,100,stdin);
21 fwrite(str,1,strlen(str),fp);
22 }
23 fclose(fp);
24 return 0;
25 }
求大神指教,代码编译连接没错,但是不能写入文件为什么呀