有没有办法获取cmd提示符的文本文件?也就是说,printf在codeblocks c中显示的所有数据?

时间:2015-02-04 23:57:39

标签: c cmd printf codeblocks

我目前正在使用codeblocks在c中编写一堆计算,然后使用printf()将它们打印到cmd提示符下;功能。我正在尝试根据收集的数据创建图表。有没有办法获得我打印出来或更好的所有数据的硬拷贝或文本/ doc文件,有没有办法将cmd提示符上的所有值都放到图表中?

1 个答案:

答案 0 :(得分:2)

为什么不将它们保存到文件中?

写入文件的好例子:

FILE *f = fopen("file.txt", "w");
if (f == NULL)
{
   printf("Error opening file!\n");
   exit(1);
}

 /* print some text */
 const char *text = "Write this to the file";
 fprintf(f, "Some text: %s\n", text);

/* print integers and floats */
int i = 1;
float py = 3.1415927;
fprintf(f, "Integer: %d, float: %f\n", i, py);

/* printing single chatacters */
char c = 'A';
fprintf(f, "A character: %c\n", c);

fclose(f);

另一种解决方案是使用> file.txt

管道输出