InterviewSolution
Saved Bookmarks
| 1. |
What will you use if you are not intended to get a return value?(a) static(b) const(c) volatile(d) voidThis question was addressed to me in final exam.I'd like to ask this question from Value Return topic in portion Functions, Namespaces & Exceptions in C++ of C++ |
|
Answer» RIGHT CHOICE is (d) VOID Easiest EXPLANATION - Void is USED to not to return anything. |
|