Saved Bookmarks
| 1. |
Consider the following declaration int sum(int a , int b){return a+b; } From the following which is the valid function call. (a) n = sum(10) (b) n = sum(10,20) (c) n = sum(10,20,30) (d) n = sum() |
|
Answer» (b) n = sum(10,20) |
|