C Programming - Functions
|
|
|
|
Exercise"I never think of the future. It comes soon enough."
- Albert Einstein
|
| 6. |
A function may have any number of return statements each returning different values. |
Answer: Option D
Explanation:
True, A function may have any number of return statements each returning different values and each return statements will not occur successively.
|
| 7. |
Names of functions in two different files linked together must be unique |
Answer: Option A
Explanation:
True, If two function are declared in a same name, it gives "Error: Multiple declaration of function_name())".
|
|
|