Name: Anonymous 2012-10-20 23:44
Why can't goyim understand pointer arithmetic?
int* px = new int[4];
for(int i = 0; i < 4; ++i) {
*(px+i) = i*2;
std::cout << "I know pointer arithmetic! px[" << i << "] = " << *(px+i) << endl;
}