ぐるぐる回る.
889 ワード
/*
* :
*Copyright(c)2013,
*All rights reserved.
* :
* :
* :2013 12 10
* :v1.0
* :
* :
* :
* :(1),(2)
* :
* :
*/
#include <iostream>
using namespace std;
int *p;
void pp(int a, int *b);
int main()
{
int a=1, b=2, c=3;
p=&b;
pp(a+c, &b);
cout<<"(2)"<<a<<','<<b<<','<<*p<<endl;
return 0;
}
void pp(int a, int *b)
{
int c=4;
*p=*b+c;
a=*p-c;
cout<<"(1)"<<a<<','<<*b<<','<<*p<<endl;
}
心得体得:ちょっと回りますが、小さな枠を描いて分析すればいいです.