Answer:
void main(){
int *ip1,*ip2,*ip3;
printf("Enter values for ip1 and ip2\\");
scanf("%d\\",ip1);
scanf("%d\\",ip2);
*ip3=*ip1+*ip2;
}
Step-by-step 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