Pointers in C

  • + 0 comments

    void update(int *a,int *b) { *a= *a + *b; *b= *a - *b - *b; if(*b <= 0){ *b = -*b; } else { *b; } // Complete this function
    }