用swap函数交换两个变量的值

    科技2023-11-18  85

    void swap(int *a,int *b){ int tmp=*a; *a=*b; *b=tmp; }
    Processed: 0.012, SQL: 8