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