View difference between Paste ID: di1tgCbp and L7iz6UJs
SHOW: | | - or go back to the newest paste.
1-
double *p1,*p2
1+
int i;
2-
double a1,a2,a3,result;
2+
double *p1, *p2;
3
4-
p1=&a1;
4+
for (i=0; i<100; i++){
5-
p2=&result;
5+
    *p1 = *p1+*p2;
6-
*p2=*p1;
6+
    p2 = p2+2;
7-
p1=&a2;
7+
}