Pointer Operation

Examples

C++

int * p = new int[2];
p[0] = 0;
p[1] = 1;
p++;
cout << *p;