✅ 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 ;}