View difference between Paste ID: bwfckNQB and GyhZg8Ap
SHOW: | | - or go back to the newest paste.
1-
double *p1,*p2,*p3,*p4;
1+
double *p1,*p2
2
double a1,a2,a3,result;
3
4
p1=&a1;
5-
p2=&a2;
5+
p2=&result;
6-
p3=&a3;
6+
*p2=*p1;
7-
p4=&result;
7+
p1=&a2;
8-
*p4=*p1+*p2+*p3;
8+
*p2=*p1+*p2;
9
p1=&a3;
10
*p2=*p1+*p2;