MCQOPTIONS
Saved Bookmarks
| 1. |
If a function is to be made const, which is the correct syntax? |
| A. | const functionName(parameters); |
| B. | const returnType functionName(parameters); |
| C. | const functionName(returnType)(Parameters); |
| D. | const (functionName(parameters)); |
| E. | (Parameters);d) const (functionName(parameters)); |
| Answer» C. const functionName(returnType)(Parameters); | |