logo

Crowdly

Browser

Add to Chrome

#include <iostream> using namespace std ; int add(int *a,int *b){ *a=*a+*...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

#include <iostream>

using namespace std ;

int add(int *a,int *b){

*a=*a+*b;

return *a;

}

int main ( )

{

int a=9;

int b=5;

add(&a,&b);

cout<<a<<endl;

cout<<b;

return 0 ;

}

0%
0%
100%
0%
More questions like this

Want instant access to all verified answers on moodle.old.gi.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome