#include<stdio.h>
#include<stdlib.h>
void chang(int *,int *);
int main(){
int i=100,j=200;
printf("交換前i與j的值: \n");
printf("i=%d, j=%d\n",i,j);
chang(&i,&j);
printf("交換後i與j的值: \n");
printf("i=%d, j=%d\n",i,j);
system("pause");
return 0;
}
void chang(int *x,int *y){
int temp;
temp=*x;
*x=*y;
*y=temp;
}
沒有留言:
張貼留言