c语言创建自定义名字的txt文件
时间: 2023-09-09 13:14:11 浏览: 305
你可以使用 C 语言中的文件操作函数来创建自定义名称的 .txt 文件。具体步骤如下:
1. 打开文件
使用 `fopen()` 函数打开一个文件,需要指定文件名和打开模式。
```c
FILE *fp;
fp = fopen("filename.txt", "w");
```
2. 写入内容
使用 `fprintf()` 函数向文件中写入内容。
```c
fprintf(fp, "This is some text.\n");
```
3. 关闭文件
使用 `fclose()` 函数关闭文件。
```c
fclose(fp);
```
完整代码示例:
```c
#include <stdio.h>
int main() {
FILE *fp;
char filename[20];
printf("Enter the name of the file: ");
scanf("%s", filename);
fp = fopen(filename, "w");
fprintf(fp, "This is some text.\n");
fclose(fp);
printf("File created successfully.");
return 0;
}
```
在运行程序时,会要求输入文件名。输入文件名后,程序会在当前目录下创建一个同名的 .txt 文件,并向其中写入一行文本。
阅读全文