Answer Posted / chirag garg
printf("% \bd");
| Is This Answer Correct ? | 2 Yes | 12 No |
Post New Answer View All Answers
Explain how many levels deep can include files be nested?
How do you determine the length of a string value that was stored in a variable?
How can I change the size of the dynamically allocated array?
Why c is called a middle level language?
Explain how can a program be made to print the line number where an error occurs?
How can I find out if there are characters available for reading?
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
Is null always equal to 0(zero)?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
Explain what are compound statements?
What are loops c?
What is volatile variable in c with example?
What does stand for?
What is bin sh c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;