#include
Int main () {
Fprintf (stdout, "Hello");
Fprintf (stderr, "World!" );
return 0;
}
The output is a result,
World! Hello
But I run this program as a result of the HelloWorld! , can not get the result, why?
CodePudding user response:
Line because of the program exits, so also is over, stderr is no buffer, will be directly output;Application of the building Lord, in my code running is
World! Hello