gpt4 book ai didi

c - 如何让用户在我的 C 程序中命名 output.txt 文件?

转载 作者:太空宇宙 更新时间:2023-11-04 08:25:12 26 4
gpt4 key购买 nike

如何让用户能够命名输出的 .txt 文件?这就是我现在所拥有的。

FILE *f = fopen("output.txt", "a");

最佳答案

您可以读取用户的输入并附加 .txt

char fileName[30];
// ...
scanf("%25s", fileName); // max 25 characters because .txt have 4 (25+4 = 29)
strcat(fileName, ".txt"); // append .txt extension
// ...
FILE *f = fopen(fileName, "a");

关于c - 如何让用户在我的 C 程序中命名 output.txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30863990/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com