地址问题
函数中变量的地址是怎么取的?
[解决办法]
- C/C++ code
void test(){ int a; cout<< "a=&" << &a << endl; } 发布时间: 2012-02-03 22:02:47 作者: rapoo
地址问题
函数中变量的地址是怎么取的?
[解决办法]
void test(){ int a; cout<< "a=&" << &a << endl; }