#include #include pid_t fork(void); int main(void) { int value; value = fork(); /* new process */ printf("In main: value = %d\n", value); return 0; }