#include<stdio.h> #include<stdlib.h> int main() { printf(" BeforeForking "); fork(); printf(" After Forking "); return 0; }