1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=
Answer Posted / sunil
C
| Is This Answer Correct ? | 2 Yes | 0 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
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
I need testPalindrome and removeSpace
#include
Why is %d used in c?
How can I make sure that my program is the only one accessing a file?
code for replace tabs with equivalent number of blanks
Explain which function in c can be used to append a string to another string?
What is the most efficient way to store flag values?
How can I split up a string into whitespace-separated fields?
Explain the advantages and disadvantages of macros.
What is #ifdef ? What is its application?
what are the different storage classes in c?
How many keywords are there in c?
How can I write a function analogous to scanf?