inplace_swap 작성일 2021-02-11 | In linux Reading time 0 void inplace_swap(int *x,int *y) { *y=*x^*y; *x=*x^*y; *y=*x^*y; }