diff --git a/mty8.md b/mty8.md new file mode 100644 index 0000000..546de5d --- /dev/null +++ b/mty8.md @@ -0,0 +1,8 @@ +// 交换两个长整型数据 +void SwapLong(long *x, long *y) +{ +long temp; +temp = *x; +*x = *y; +*y = temp; +} \ No newline at end of file