MCQOPTIONS
Saved Bookmarks
| 1. |
Which function definition will run correctly? |
| A. | int sum(int a, int b) return (a + b); |
| B. | int sum(int a, int b) {return (a + b);} |
| C. | int sum(a, b) return (a + b); |
| D. | none of the mentioned |
| Answer» C. int sum(a, b) return (a + b); | |