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