相关代码 |
|
例6.19 使用指针变量作形参,实现两个变量的值互换。 #include using namespace std; int main( ) { void swap(int *,int *); int i=3,j=5; swap(&i,&j); //实参是变量的地址 cout return 0; } void swap(int *p1,int *p2) //形参是指针变量 { int temp; temp=*p1; //以下3行用来实现i和j的值互换 *p1=*p2; *p2=temp; }
相关资源 |
|