You are viewing a single comment's thread. Return to all comments →
void update(int *a,int *b) { *a= *a + *b; *b= *a - *b - *b; if(*b <= 0){ *b = -*b; } else { *b; } // Complete this function }
Seems like cookies are disabled on this browser, please enable them to open this website
Pointers in C
You are viewing a single comment's thread. Return to all comments →
void update(int *a,int *b) { *a= *a + *b; *b= *a - *b - *b; if(*b <= 0){ *b = -*b; } else { *b; } // Complete this function
}