#include
using namespace std;
void fun ( int , int , int * ) ;
int main ( )
{int x , y , z ;
fun ( 5 , 6 , &x ) ;
fun ( 7 , x , &y ) ;
fun ( x , y , &z ) ;
cout << x << ","<< y << "," << z ;
return 0;
}
void fun ( int a , int b , int * c )
{ b+=a ; * c=b-a ; }
运行结果是6,6,6
是怎么出来的...没理解求指教qaq感谢!