You are viewing a single comment's thread. Return to all comments →
`Hey guys :
void update(int *a,int *b) { // Complete this function int sum = *a + *b; int sub = abs(*a - *b);
*a = sum;```` *b = sub;
} `
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 →
`Hey guys :
include
void update(int *a,int *b) { // Complete this function
int sum = *a + *b; int sub = abs(*a - *b);
} `