Pointers in C

  • + 0 comments

    Math

    void update(int *a,int *b) {
        *a = *a + *b;
        *b = abs((*a - *b) - *b); 
    }