如果变量x的地址是0x6ffe14,下面C++代码执行以后输出的是( )。
int *p=NULL;
int x=2;
p=&x;
p++;
cout<<p<<endl;
0x6ffe11
0x6ffe14
0x6ffe18
0x6ffe15