Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234


........ this is coad .... BUt i could not compleate it .....:(

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {

int N;
pid_t pid;

int cont;

if (argc != 2) {
printf("Wrong number of command-line parameters!\n");
return 1;
}

N = atoi(argv[1]);

printf("Creating process sequence of length %d.\n",N);

printf("%d begins the sequence.\n",getpid());

/* What I have to do next ?????? */

}


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Write a program to print fibonacci series using recursion?

0 Answers  


How many bytes is a struct in c?

0 Answers  


Find if a number is power of two or not?

1 Answers  


Explain how do you list files in a directory?

0 Answers  


can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?

2 Answers  






What is the difference between malloc() and calloc()?

0 Answers  


Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?

6 Answers  


Why c++ is called c++ and not c+?

9 Answers   EBS,


What is #pragma statements?

0 Answers  


Why can’t constant values be used to define an array’s initial size?

0 Answers  


How do I get a null pointer in my programs?

0 Answers  


when user give a number it multiply with 9 without useing '+' and '*' oprator

4 Answers  


Categories