// pointer-increment #include int main() { int array[5] = {0, 1, 2, 3, 4}; int *ptr = array + 4; ++ptr; ++ptr; // out of bounds return 0; }