Open In App

C++ | Function Overloading and Default Arguments | Question 5

Like Article
Like
Save Article
Save
Share
Report issue
Report

Output of following program?




#include <iostream>
using namespace std;
  
int fun(int=0, int = 0);
  
int main()
{
  cout << fun(5);
  return 0;
}
  
int fun(int x, int y) { return (x+y); }


(A) Compiler Error
(B) 5
(C) 0
(D) 10


Answer: (B)

Explanation: The statement “int fun(int=0, int=0)” is declaration of a function that takes two arguments with default values as 0 and 0.

The last statement is definition of fun().

When we make a call fun(5), x gets the value 5 and y gets 0. So the returned value is 5.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Share your thoughts in the comments
Similar Reads