DEV Community

Cover image for Question on Fork System Call | Operating System - M01 P09
Rahul Mishra
Rahul Mishra

Posted on • Originally published at programmingport.hashnode.dev

1

Question on Fork System Call | Operating System - M01 P09

This is a multipart blog article series, and in this series I am going to explain you the concepts of operating system. This article series is divided into multiple modules and this is the first module which consists of 12 articles.

In this article we will see a question on fork system call, and by that question I will try to explain you the concept of fork system call.

So, in the previous article I had explained about fork system call, it is recommended that first you go through that article for getting a basic understanding of the topic, Fork system call

I am going to use a C program to explain you about fork system call

#include <stdio.h>
#include <unistd.h>

int main() {
    if(fork() && fork())
        fork();
    printf("Hello");
    return 0;
}
Enter fullscreen mode Exit fullscreen mode

Now, the compiler will execute the code and when the if statement come, the first fork command will be executed, and a child process will be created, and both the process (child process and parent process) will run parallelly, as you can see in the below diagram.
Untitled Diagram.png

Now the child process C1 will print Hello

As you can see that AND operator is written after first fork() so it will also get executed, so another child process from parent process will get created. As you can see in the diagram below.

Untitled Diagram (1).png

This C2 will also print Hello

Now the if statement is completely executed, and now the fork() statement written inside the if statement will get executed. And again a child process of parent process will be created. As you can see in the diagram below.

Untitled Diagram (2).png

This child process and parent process will print Hello

Here, in total fork is done 3 times, and in total 4 times __Hello_ will be printed._

Hope you learned something. If you have any question, query, doubt or just want to share something with me, then please feel free to contact me.

📱 Contact Me

Twitter
LinkedIn
Telegram
Instagram

📧 Write a mail

rahulmishra102000@gmail.com

🚀 Other links

GitHub
HackerRank

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay