#include<iostream.h> #include<conio.h> void add_values(int *,int *); main() { clrscr(); int i=10; int j=5; cout<<\"\\n ---------- values before function call --------- \\n\"<<endl; cout<<\"value of i = \"<<i<<endl; cout<<\"value of j = \"<<j<<endl; cout<<\"\\n ---------- Values after function call -------- \\n\"<<endl; add_values(&i,&j); cout<<\"value of i = \"<<i<<endl; cout<<\"value of j = \"<<j<<endl; getch(); return 0; } //------------------------- add_values(int *,int *) -------------------// void add_values(int *x,int *y) { *x=*x+10; *y=*y+10; }