調用函數交換兩個值

調用函數交換兩個值 完整代碼 //使用函數實現兩個數的交換 #include <stdio.h> #include<windows.h> #include<string.h> void fun1(int* a, int* b){// int temp = 0; temp = *a; *a =* b; *b = temp; } int main(){ int a = 10, b = 2
相關文章
相關標籤/搜索