摘要: C语言参数传递方式:值传递(swap1函数)地址传递(swap2函数)引用传递(swap3函数) #include<stdio.h> #include<windows.h> void swap1(int,int); //值传递 void swap2(int *p1,int *p2); //地址传递 阅读全文
posted @ 2021-01-06 15:03 haha-uu 阅读(1061) 评论(0) 推荐(0) 编辑