Mega Code Archive

 
Categories / C++ Tutorial / Array
 

Array pointer

#include <iostream>  using namespace std;    int main()  {    int *i, j[10];    double *f, g[10];    int x;      i = j;     f = g;       for(x=0; x<10; x++)       cout << i+x << ' ' << f+x << '\n';          return 0;  } 0x22ff30 0x22fed0 0x22ff34 0x22fed8 0x22ff38 0x22fee0 0x22ff3c 0x22fee8 0x22ff40 0x22fef0 0x22ff44 0x22fef8 0x22ff48 0x22ff00 0x22ff4c 0x22ff08 0x22ff50 0x22ff10 0x22ff54 0x22ff18