You are viewing a single comment's thread. Return to all comments →
//Good luck
void update(int *a,int *b) { // Complete this function int c=*a,d=*b; *a=c+d; *b=c-d; if(*b<0) *b=-(*b);
}
int main() { int a, b; int *pa = &a, *pb = &b;
scanf("%d %d", &a, &b); update(pa, pb); printf("%d\n%d", a, b); return 0;
Seems like cookies are disabled on this browser, please enable them to open this website
Pointer
You are viewing a single comment's thread. Return to all comments →
//Good luck
include
void update(int *a,int *b) { // Complete this function
int c=*a,d=*b; *a=c+d; *b=c-d; if(*b<0) *b=-(*b);
}
int main() { int a, b; int *pa = &a, *pb = &b;
}