输出单个可用普通数组方式dest[i],不过可能会出现溢出问题
输出所有一定要多使用个指针变量,以免修改本来指向头部的指针,如下:
int* temp = dest;
for(int i = 0; i < ( sizeof(dest) / sizeof(dest[0])); i++, temp++){
cout << *temp << " ";
}
sizeof(dest) / sizeof(dest[0])这一步是防止指定错类型而造成元素个数计算错误
int i;
for(i=0;i
cout<