H1B revoke and transfer question, thank you! (转载)# Immigration - 落地生根
c*e
1 楼
void swapPtr(int *a, int *b) {
int* c=a;
a=b;
b=c;
}
The above function does not work. How to write the function? Thanks.
int* c=a;
a=b;
b=c;
}
The above function does not work. How to write the function? Thanks.