Answer Posted / guest
come out of executing programme.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
When should a far pointer be used?
How can I get back to the interactive keyboard if stdin is redirected?
Where register variables are stored in c?
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
What is c standard library?
What does malloc () calloc () realloc () free () do?
Can we declare variable anywhere in c?
What is struct node in c?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
Why isnt there a numbered, multi-level break statement to break out
Is register a keyword in c?
What is the total generic pointer type?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is a program flowchart?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory