c语言创建一个txt文件
时间: 2023-09-04 12:10:37 浏览: 103
你可以使用C语言中的标准库函数来创建一个txt文件,例如:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
FILE *fp;
fp = fopen("example.txt", "w");
if (fp == NULL) {
printf("Error opening file\n");
exit(1);
}
fprintf(fp, "This is some text in the file.\n");
fclose(fp);
return 0;
}
```
在上面的例子中,我们使用了`fopen()`函数来创建一个名为`example.txt`的文件,并以写入模式(`"w"`)打开它。然后,我们使用`fprintf()`函数将一些文本写入文件中,最后使用`fclose()`函数关闭文件。
请注意,在打开文件时,我们需要检查文件指针是否为NULL,以确保文件已成功打开。 如果文件无法打开,则必须退出程序并打印错误消息。
阅读全文