MCQOPTIONS
Saved Bookmarks
| 1. |
Output of the program?#includeusing namespace std;int fun(int x = 0, int y = 0, int z){ return (x + y + z); }int main(){ cout |
| A. | 10 |
| B. | 0 |
| C. | 20 |
| D. | Compiler Error |
| Answer» E. | |