Answer:
void main(){
int *ip1,*ip2,*ip3;
printf("Enter values for ip1 and ip2\n");
scanf("%d\n",ip1);
scanf("%d\n",ip2);
*ip3=*ip1+*ip2;
}
Explanation:
*ip3=*ip1+*ip2;
this statement is used to add the values of two pointer variables and storing it in third pointer variable.
*ip1 --->ip1 gives address location of the variable and *ip1 gives the value stored at that address location