The following program doesn’t "seem" to print "hello-out". What is
the reason behind it?
#include <stdio.h>
#include <unistd.h>
int main()
{
while(1)
{
fprintf(stdout,"hello-out");
fprintf(stderr,"hello-err");
sleep(1);
}
[...]