Logo 
Search:

C Programming Articles

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

Program to copy the contents of one array to another Using Shared Memory

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

Write a program to copy the contents of one array to another Using Shared Memory.

Code for Program to copy the contents of one array to another 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 arr1[10]={1,1,1,1,1,1,1,1,1,1};
    int id;
    int iCount;
    int shmid;
    int *arr2;
        shmid=shmget(IPC_PRIVATE,20,IPC_CREAT| SHM_R | SHM_W);
    arr2=(int *)shmat(shmid,0,0);
    
    for(iCount=0;iCount<10;iCount++)
    {
        arr2[iCount]=2;
    }
    
    
    
    /* Copy Array-1 to Array-2 Using 2 Processes */
    id=process_fork(2);
    if(id==0)
    {
        /* Parent Process */for(iCount=0;iCount<10;iCount=iCount+2)
        {
            arr2[iCount]=arr1[iCount];    
        }
    }
    else
    {
        /* Child Process */for(iCount=1;iCount<10;iCount=iCount+2)
        {
            arr2[iCount]=arr1[iCount];
        }
    }
    
    process_join(2,id);
    
    printf("\n Array 2 ... \n");
    
    for(iCount=0;iCount<10;iCount++)
    {
        printf("arr2[%d] : %d\n",iCount,arr2[iCount]);
    }    
        
    return 0;
}
  
Share: 



Easy Tutor
Easy Tutor author of Program to copy the contents of one array to another 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!