MCQOPTIONS
Saved Bookmarks
| 1. |
Which public function call among the following is correct outside the class, if return type is void (C++)? |
| A. | object.void functionName(parameters); |
| B. | object.functionName(parameters); |
| C. | object.functionName void (parameters) |
| D. | object.void functionName(); |
| Answer» C. object.functionName void (parameters) | |