用函數交換兩個變數的值(C語言指標)

來源:互聯網
上載者:User

標籤:

說道到交換兩個變數值,很自然的想到,用第三方變數交換如下:

#include <stdio.h>  int swap(int x,int y) {      int a,b,temp;       temp=a;       a=b;       b=temp; }      int main() {    swap(a,b);    printf("a=%d,b=%d",a,b); }    

 

但是如果寫在函數中,你調用這個函數,會發現,a和b的值在函數內部交換,當你在mian()中調用這個函數中,發現依然沒有交換

這時候就需要用到指標,如下

 1 #include <stdio.h> 2  3 void swap(int *px,int *py) 4 { 5     int ptemp; 6     ptemp=*px; 7     *px=*py; 8     *py=ptemp; 9     10     11 }12 13 int main(int argc, const char * argv[]) {14     // insert code here...15     16     int a=1,b=2;17     printf("a=%d,b=%d\n",a,b);18     swap(&a, &b);19     printf("a=%d,b=%d\n",a,b);20     return 0;21 }

在外面的函數裡面通過指標直接交換傳遞進去的值,這個可以有,OK,我是這樣理解的!

 

用函數交換兩個變數的值(C語言指標)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.