标签:exe mil style c语言 blog 管道 printf sof test
0. C语言的标准输入输出
stdin
stdout
stderr
1. 重定向到文件
1 #include <stdio.h> 2 3 int main(){ 4 char a[100]; 5 if(1==0){ 6 freopen("data.txt","w",stdout); 7 printf("hello word"); 8 }else{ 9 freopen("data.txt","r",stdin); 10 11 scanf("%s",a); 12 printf("%s\n",a); 13 } 14 15 return 0; 16 }
输出结果
data.txt ------------------- hello word ----------------------------- hello 请按任意键继续. . .
2. 方式二
重定向(windows):
标签:exe mil style c语言 blog 管道 printf sof test
原文地址:http://www.cnblogs.com/AbcFly/p/6238514.html