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 << fun(10);return 0;}

A. 10
B. 0
C. 20
D. Compiler Error
Answer» E.


Discussion

No Comment Found