stdout不见了
The following program doesn't "seem" to print "hello-out". (Try executing it)#include <stdio.h>
#include <unistd.h>
int main()
{
while(1)
{
fprintf(stdout,"hello-out");
fprintf(stderr,"hello-err");
sleep(1);
}
return 0;
}
话说hello-out真的没有出现,去哪里了?不理解!