Program:

#include<stdio.h>

int main(){
int n1,n2,result,*p,*q;

printf("Enter the Two Number:");
scanf("%d%d",&n1,&n2);
p=&n1;
q=&n2;
result=*p+*q;

printf("->>ADDITION=%d\n",result );
return 0;
}

Expected O/P:



Enter the Two Number:45
61
->>ADDITION=106