參數傳遞方式:傳值與傳地址

#include<stdio.h> void fun(int *a, int *b, int *c) { int *temp; temp=a; a=b; b=temp; *temp=*b; *b=*c; *c=*temp; } int main() { int a,b,c,*p1,*p2,*p3; a=5; b=7;
相關文章
相關標籤/搜索