#include #include // Fun with Pointers and Arrays int main() { int *ip1; int a[5] = {1, 3, 4, 5, 6}; ip1 = &a[0]; // ip1 = ip1 + 1; ip1++; // increments the pointer (*ip1)++; // increments the pointee printf("%d, ", *ip1); // what is the result? system("pause"); }