#include using namespace std; int main(){ int stuff[] = {2, 4, 6, 8, 10, 12, 14, 16, 18, 20}; cout << stuff[3] << endl; // Means stuff + 12 bytes cout << *(stuff + 3) << endl; int a = 55, b = 66, c = 77; cout << &a << "\n" << &b << "\n" << &c << "\n"; cout << *(&c + 0) << endl; cout << *(&c + 1) << endl; cout << *(&c + 2) << endl; int *pc = &c; cout << "*pc: " << *pc << endl; cout << "pc[1]: " << pc[1] << endl; for(int i = 0; i < 14; i++) cout << pc[i] << " "; cout << endl; }