#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { FILE *fp; fp=fopen("hello.txt","w"); fprintf("1\n"); }
时间: 2023-08-06 09:06:50 浏览: 100
#include<stdio.h>
这段代码存在问题,因为 `fprintf()` 函数需要两个参数,第一个参数应该是文件指针,第二个参数是要写入文件的字符串。因此,正确的代码应该是这样的:
```c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
FILE *fp;
fp = fopen("hello.txt", "w");
if (fp == NULL) {
printf("Failed to open file!\n");
return 1;
}
fprintf(fp, "1\n");
fclose(fp);
return 0;
}
```
这个程序打开一个名为 "hello.txt" 的文件,并向文件中写入字符串 "1\n",然后关闭文件。如果文件打开失败,程序会输出一条错误消息并退出。
阅读全文