#include<stdio.h>
#include<Unistd.h>
Void main()
{ Printf("hi");
fork();
Printf("hello");
}
Output: hi hello hi hello
"But when iam using \n in the printf statements iam getting the output as"
Output: hi
hello
hello
[But \n is used for displaying statement in new line but why am i getting this difference] Thank you ...