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 / seema choudhary
(a) Need not return any value
b'caz all statements has using the return type
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the difference between struct and typedef struct in c?
Who is the founder of c language?
What is the significance of scope resolution operator?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Explain how can type-insensitive macros be created?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
what are non standard function in c
What's the best way of making my program efficient?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Which node is more powerful and can handle local information processing or graphics processing?
What is zero based addressing?
Write a Program to accept different goods with the number, price and date of purchase and display them
What are integer variable, floating-point variable and character variable?