Saved Bookmarks
| 1. |
If we start our function call with default arguments means, what will be proceeding arguments?(a) user argument(b) empty arguments(c) default arguments(d) user & empty argumentsThis question was addressed to me in examination.Question is taken from Default Arguments in section Functions, Namespaces & Exceptions in C++ of C++ |
|
Answer» CORRECT answer is (c) DEFAULT arguments Explanation: As a RULE, the default argument must be FOLLOWED by default arguments only. |
|