Wyverex Wrote:
>
> 1)First is simple..
>
> What's the "condition" so that the following code
> snippet prints both HelloWorld !
>
> if "condition"
> printf ("Hello");
> else
> printf("World");
Might work, don't know if the order is correct:
if (!fork())
printf ("Hello");
else
printf("World");