Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#include #include #include extern char **environ; void printenv () 1 int i = 0; while (environ[i] != NULL) { printf(%s , environ[i]); i++; } }

image text in transcribed
image text in transcribed
image text in transcribed
#include #include #include extern char **environ; void printenv () 1 int i = 0; while (environ[i] != NULL) { printf("%s ", environ[i]); i++; } } void main() pid_t childPid; switch (childid = fork ()) { case 0: /+ child process */ printenv (); exit(0); default: /. parent process / //printenv (); exit(0); Step 1. Please compile and run the following program, and describe your observation. Because the output contains many strings, you should save the output into a file, such as using a .out > child (assuming that a.out is your executable file name). #include #include #include extern char * environ; void printenv () int i = 0; while (environ [1] != NULL) printf(" ", environ[1]); i++; 3 void main() pidut childPid; switch (childid - fork()) case 0: child process / printenv (); exit (0) default: parent process */ //printenv () exit (0) Stay connect Application Home Workout Step 2. Now comment out the printenv () statement in the child process case (Line O), and uncomment the printenv () statement in the parent press case (Line ). Compile and run the code again, and

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Learning MySQL Get A Handle On Your Data

Authors: Seyed M M Tahaghoghi

1st Edition

0596529465, 9780596529468

More Books

Students also viewed these Databases questions

Question

Give the IUPAC names of the following compounds.

Answered: 1 week ago