Answer Posted / venkatesh
it is stactural programing language
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the newline escape sequence?
How can I sort more data than will fit in memory?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
What is define directive?
What is #include cctype?
Can one function call another?
Do you know the purpose of 'register' keyword?
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 difference between test design and test case design?
What are the data types present in c?
Can we change the value of #define in c?
Explain what is the use of a semicolon (;) at the end of every program statement?
Is it possible to initialize a variable at the time it was declared?
Which is more efficient, a switch statement or an if else chain?
What are the two forms of #include directive?