• + 0 comments
    #include <stdio.h>
    #include <stdlib.h>
    
    void update(int *a,int *b) {
        // Complete this function
        *a = *a + *b;
        *b = abs(*b - (*a - *b));
    }