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 / shruti
Need not return any value.
its acceptable if a function does not return any value
provided its return type is "void"..
if its return type is char , int , float.. then it has to
return that respective type of value
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Explain what are the different file extensions involved when programming in c?
What are the types of variables in c?
What is nested structure with example?
Is c procedural or functional?
Was 2000 a leap year?
plz let me know how to become a telecom protocol tester. thank you.
What is the scope of global variable in c?
What are qualifiers and modifiers c?
what are bit fields in c?
What are the advantage of c language?
Is c++ based on c?
What are the different properties of variable number of arguments?
Which is better malloc or calloc?
What is the benefit of using an enum rather than a #define constant?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;