[Solved] will someone explain what this does in C / UNIX

[ad_1]

This creates a child process which has a copy of the parent’s heap, stack and data space.
You need to #include <unistd.h>. You could use this when you want a process to duplicate itself so that the parent and child can each execute different sections of code at the same time.

[ad_2]

solved will someone explain what this does in C / UNIX