[求助]指针遍历数组的问题
#include <iostream>
#include <stdlib.h>
#include"stdio.h"
using namespace std;
int main( int argc, int *argv[])
{
int a[5]={1,2,2,3};
int *p=a;
int *q=a+5;
while (p!=q)
cout<<(*q)++<<endl;
system("PAUSE");
return 0;
}
输出怎么全是地址?