Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Parallel Processing ProgramsRSS Feeds

Program to do sum of numbers from 1 to 10, by dividing the job into two processes parent and one child Using Shared Memory

Posted By: Easy Tutor     Category: C Programming     Views: 2509

Sum of numbers from 1 to 10, by dividing the job into two processes(parent and one child) (Using Shared Memory)

Code for Program to do sum of numbers from 1 to 10, by dividing the job into two processes parent and one child Using Shared Memory in C Programming

# include <stdio.h>
# include </usr/include/sys/types.h>
# include </usr/include/sys/shm.h>
# include </usr/include/sys/ipc.h>

# include "forkjoin.h"int main()
{
  int a[10]={1,2,3,4,5,6,7,8,9,10};
  int sum1=0,sum=0;
  int *sum2;
  int shmid;
  shmid=shmget(IPC_PRIVATE,sizeof(int),IPC_CREAT | SHM_R | SHM_W);
  sum2= (int *) shmat(shmid,0,0);

  int id,i;
  id=process_fork(2);
  if(id==0) 
  {
    for(i=0;i<10;i=i+2)
        {
           sum1=sum1 + a[i];
        }
        printf("Parent Sum : %d\n",sum1);
  }
  else
  {
       for(i=1;i<10;i=i+2)
       {
           *sum2=*sum2 + a[i];   
      }
       printf("Child Sum : %d\n",*sum2);
  }
  
  process_join(2,id);       

  sum=sum1 + *sum2;
   
  printf("Final Sum is : %d\n", sum);
  return 0;    
}

  
Share: 



Easy Tutor
Easy Tutor author of Program to do sum of numbers from 1 to 10, by dividing the job into two processes parent and one child Using Shared Memory is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!