Pointers in C

  • + 38 comments
    void update(int *a,int *b) {
        // Complete this function
        *a=*a+*b;
        *b=abs(*a-(2**b));
    }
    

    two line code