输入一串字符串以txt文本的形式输出的c语言代码
时间: 2024-01-31 11:03:43 浏览: 134
以下是将字符串输出到txt文本的c语言代码:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!"; // 要输出的字符串
FILE *fp; // 文件指针
fp = fopen("output.txt", "w"); // 打开文件并以写入模式打开
if (fp == NULL) { // 判断文件是否打开成功
printf("打开文件失败!\n");
return 1;
}
fprintf(fp, "%s", str); // 将字符串写入文件
fclose(fp); // 关闭文件
printf("写入成功!\n");
return 0;
}
```
注意,这只是一个简单的示例代码,实际应用中需要添加错误处理和其他必要的功能。同时,需要根据具体的需求修改文件名和要输出的字符串。
阅读全文