You are viewing a single comment's thread. Return to all comments →
Hey, this is my code. Insights would be appreciated. Happy learning!
#include <stdio.h> #include <math.h> void update(int *a,int *b) { // Complete this function int temp;`` temp = *a; (*a) = (*a) + (*b); (*b) = abs((temp)-(*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 →
Hey, this is my code. Insights would be appreciated. Happy learning!