关于格式化输出函数fprintf()中的stdoutstderrprintf怎么格式化输出
 
格式化输出函数 fprintf() 的原型如下:
#include<stdio.h>
int printf(const char *restrict format, ...);
int fprintf(FILE *restrict fp, const char *restrict format, ...);
两个函数的返回值:若成功则返回输出字节数,若输出出错则返回负值
printf将格式化写到标准输出,fprintf写至指定的流。
以下为测试fpstdoutstderr的区别:
#vi fprint.c
vi中输入下面几行:
-----------------------------------------------------------------
#include<stdio.h>

void main()
{
    fprintf(stdout,"this is first!\n");
    fprintf(stderr,"this is second!\n");
    printf("this is third!\n");
}
------------------------------------------------------------------
保存退出后
#gcc fprint.c -0 fprint
#./fprint
会在终端输出
this is first!
this is second!
this is third!
若把输出重定向到文件
#./fpint&
this is second!
文件中的内容为:
this is first!
this is third!
说明:stdout标准输出、stderr标准错误输出,二者默认向屏幕输出。
    如果重定向输出到磁盘文件,则stdout输出到该文件,而stderr仍输出到屏幕。
stderr是作为程序运行中的错误显示出来的,若要把它重定向到磁盘文件,需要运行如下命令:
#./fprint 2&
this is first!
this is third!
文件中的内容为:
this is second!
 
PS:关于为什么 "./fprint 2&" 中的 2 ;在UNIX系统中,标准输入、标准输出、标准错误输出分别被定义为012

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。