#include <iostream>
using namespace std;
int *wedgic(int foo)
{
cout<<foo;
return (&foo);
}
int main()
{
int fo=7;
int *blah;
blah=wedgic(fo);
(*blah)+=3;
wedgic(fo);
}
谁能告诉我为什么结果是 7 7 7 而不是 7 7 10?
请帮忙,我想我不明白 Blah=wedgic(fo); 是什么意思 做...
谢谢