diff --git a/ForkProcess b/ForkProcess new file mode 100644 index 00000000..01767800 --- /dev/null +++ b/ForkProcess @@ -0,0 +1,10 @@ +#include +#include +#include +int main() +{ + fork(); + + printf("Happy time understanding forking a process!\n"); + return 0; +}