Question: What is the output of the program? ( 2 ) #include using namespace std; void fun ( int = 1 0 , int = 2

What is the output of the program? (2)
#include
using namespace std;
void fun(int=10, int=20, int=30);
void fun(int,int);
int main()
{
fun(1,2);
return 0;
}
void fun (int x, int y, int z)
{
cout<

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!