#include int main(int argc, char *argv[] ) { printf("Hello World !\n"); int i = fork( ); printf("i = %d\n", i); // Show the return value of fork() }