

MCQOPTIONS
Saved Bookmarks
1. |
What is the correct function prototype of () operator overloading? |
A. | return_type operator(arguments)(); |
B. | return_type operator(arguments); |
C. | return_type operator()(arguments); |
D. | return_type operator(Class_name)(arguments); |
Answer» D. return_type operator(Class_name)(arguments); | |