int * ip, ia[12]; ip = ia++;
ia[1]
int * ip, ia[12]; ip = ia;
ia[0]
int * ip, ia[12]; ip = ia + 3;
ia[2]
Back to to the questions.