65,211
社区成员
发帖
与我相关
我的任务
分享
this->phead->base = new int[STACK_INIT_SIZE];
this->phead->top = this->phead->base;


#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int *p = new int[10];
cout << p << endl;
++ p;
cout << p << endl;
return 0;
}
0x9d75008
0x9d7500c
