What is true about the following
C Functions
a.Need not return any value
b.Should always return an integer
c.Should always return a float
d.Should always return more than one value.
Answer Posted / arjun
none of options is answer...
so option (a)shud b lyk ..
a) its not necessary to return any value
n dis will b correct in case of return type of function is
void
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
What are the types of data structures in c?
What is an expression?
How to write a multi-statement macro?
Explain the array representation of a binary tree in C.
What type of function is main ()?
What does == mean in texting?
How can you determine the maximum value that a numeric variable can hold?
How do I convert a string to all upper or lower case?
what is the significance of static storage class specifier?
What is a buffer in c?
How do I create a directory? How do I remove a directory (and its contents)?
What happens if you free a pointer twice?
Explain what is wrong with this statement? Myname = ?robin?;
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
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