Answer Posted / srinivasroyal
inline function means where the function call is replaced by
the function defination.(which can be expands in a line).
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is c token?
What is a pointer value and address in c?
What is a good data structure to use for storing lines of text?
What does the format %10.2 mean when included in a printf statement?
What are the basic data types associated with c?
What are the 4 types of unions?
What is meant by preprocessor in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is difference between structure and union with example?
What is main () in c?
why return type of main is not necessary in linux
What is a stream in c programming?
What is extern variable in c with example?
Without Computer networks, Computers will be half the use. Comment.
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