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 / sharana basava
Ya... d ans wil be a. In c the func may or may not returns
d value......so the ans wil ne need not to return d
value... if tis is rit tan the func must have void as a
data type.. like void main..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the data types present in c?
What are the 5 types of organizational structures?
What does it mean when the linker says that _end is undefined?
What is strcpy() function?
What is the general form of a C program?
What is a function simple definition?
Why flag is used in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the difference between if else and switchstatement
Explain what is the most efficient way to store flag values?
What is switch in c?
Define circular linked list.
Why is c called c not d or e?
what do u mean by Direct access files? then can u explain about Direct Access Files?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above