交换两个长整型数据 #5

Merged
pvfj5ugro merged 1 commits from XZL_交换两个长整型数据 into master 2 years ago

@ -220,7 +220,10 @@ void SwapFloat(float *x,float *y)
``` ```
void SwapLong(long *x,long *y) void SwapLong(long *x,long *y)
{ {
long temp;
temp = *x;
*x = *y;
*y = temp;
} }
``` ```

Loading…
Cancel
Save