Question: #include using namespace std; const int C = 2 0 0 ; int func 1 ( int n , int n 1 ) { n

#include
using namespace std;
const int C =200;
int func1(int n, int n1)
{
n +=3;
n1-= n;
return 2+ n + n1* C;
}
void func2(int n, int & n1)
{
n = C * n1;
n1= n n1;
}
void func3(int & n, int & n1)
{
int k;
k = n1+3;
n = k *30;
n1= n +2* k;
}
int main()24
{
int n, m, j;
n =5;
m =10;
j = func1(n, m);
n =15;
m =20;
func2(n, m);
n =25;
m =30;
func3(n, m);
return 0;
}

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 Databases Questions!