Write a program to find sum of even numbers in parent process and sum of odd numbers in child process.
Examples:
Input : 1, 2, 3, 4, 5
Output :
Parent process
Sum of even no. is 6
Child process
Sum of odd no. is 9
Explanation: Here, we had used fork() function to create two processes one child and one parent process.
- For child process fork() returns 0 so we can calculate sum of all odd numbers in child process.
- fork() returns value greater than 0 for parent process so we can calculate sum
- for all even numbers there by just simply checking the value returned by fork().
C++
#include <iostream>
#include <unistd.h>
using namespace std;
int main()
{
int a[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int sumOdd = 0, sumEven = 0, n, i;
n = fork();
if (n > 0) {
for (i = 0; i < 10; i++) {
if (a[i] % 2 == 0)
sumEven = sumEven + a[i];
}
cout << "Parent process \n" ;
cout << "Sum of even no. is " << sumEven << endl;
}
else {
for (i = 0; i < 10; i++) {
if (a[i] % 2 != 0)
sumOdd = sumOdd + a[i];
}
cout << "Child process \n" ;
cout << "\nSum of odd no. is " << sumOdd << endl;
}
return 0;
}
|
Output:
Parent process
Sum of even no. is 30
Child process
Sum of odd no. is 25
If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Sep, 2021
Like Article
Save Article