Answer Posted / abir maiti
An array is a linear data structure of homogeneous elements.
Homogeneous means, every element will be of same data type,
may of int type or of float type or of char type. Any array
will be stored in consecutive memory locations. Array
elements are accessed using index starting from 0. Array can
be one or multidimensional.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is data structure in c language?
How do I use strcmp?
What is the size of array float a(10)?
What does c mean before a date?
What is array in c with example?
What are the advantages of using Unions?
How do you do dynamic memory allocation in C applications?
How is a pointer variable declared?
By using C language input a date into it and if it is right?
Is anything faster than c?
How can I read and write comma-delimited text?
What does void main () mean?
Difference between macros and inline functions? Can a function be forced as inline?
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 typeof in c?