gpt4 book ai didi

C - 在函数末尾添加打印到文件选项

转载 作者:行者123 更新时间:2023-11-30 21:06:44 24 4
gpt4 key购买 nike

假设我有一个包含许多 printf 语句的函数,在其末尾我想添加一个选项以将已打印的项目保存到文本文件中。

例如:

void print_Items(float a, float b, float c){

printf("%f", a);
printf("%f", b);
printf("%f", c);

printf("s", "Press s to save above list to a file or q to quit");

ch = getchar();

switch (ch){

case 's':
PRINT TO FILE
break;

case 'q':
break;

}

我想避免创建另一个类似的函数,该函数只是专门生成相同的内容并将其打印到文件中

最佳答案

理想情况下,所有打印语句都通过命令行推送到 txt 文件中,使用如下示例:

test.exe > stdout.txt

看看这个链接

Writing ALL program output to a txt file in C++

freopen() 应该允许您使用 switch case 来启用某种调试并将所有打印语句推送到 txt 文件中。

关于C - 在函数末尾添加打印到文件选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47367619/

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