• + 0 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));
    }