2020年4月30日星期四

C 利用指標替換兩個數值

C 語言學習紀錄

利用指標替換兩個數值

C Program to Swap two Numbers

void swap(int *xp, int *yp)
{
    int temp = *xp;
    *xp = *yp;
    *yp = temp;
}


動作說明
1.寫一個副程式,輸入兩個int 指標變數
2.宣告一個int 去暫存 第一個指標變數值
3.把第二個指標變數值傳給第一個指標變數值
4.第二個指標變數值去存暫存的指標變數值
參考資料
https://www.geeksforgeeks.org/c-program-swap-two-numbers/

沒有留言:

發佈留言

打賞按讚