Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Code for A2q1a.c #include #include #include #include int main(int argc, char *argv[]) { int k; printf(hello world (pid:%d) , (int) getpid()); int rc = fork();

Code for A2q1a.c
#include  #include  #include  #include  int main(int argc, char *argv[]) { int k; printf("hello world (pid:%d) ", (int) getpid()); int rc = fork(); if (rc Code for A2q1b.c
#include  #include  #include  #include  int main(int argc, char *argv[]) { int k; printf("hello world (pid:%d) ", (int) getpid()); int rc = fork(); if (rc  
image text in transcribed
image text in transcribed
1. Consider these two C programs: A2q1a.e and A2qlb.c. These C programs are provided in the Google Classroom's Assignment 2. Each program will generate a child process. The parent process will print ' P ' for 500 times and the child will print ' C " for 500 times. The difference between these two program is the location of the command wait(NULL). 1.1) Compile and run the C program A2q la.c. 1.2) Compile and run the C program A2qlb.c. You will see an output on the screen. Take a screenshot of the output and put here. 1.3) Explain why these two programs gave the different outputs

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions