main()
{int a=200*200/100;
printf("%d",a);
}
Answer Posted / pawan singh
400
| Is This Answer Correct ? | 12 Yes | 14 No |
Post New Answer View All Answers
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 the explanation for cyclic nature of data types in c?
What is indirection?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What kind of structure is a house?
What is the c language function prototype?
What is function what are the types of function?
What does & mean in scanf?
Explain the binary height balanced tree?
what do you mean by enumeration constant?
How can I change their mode to binary?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What does the characters “r” and “w” mean when writing programs that will make use of files?
Can we initialize extern variable in c?
Why C language is a procedural language?