how to extract last 4 elements of a 2-D array?

Hi all

i have a 2-D array A[4][400] and i want to extract and save only its last 4 elements..can anyone please tell me exactly how i should do it? Any info on 2-d arrays would be great too

-thanx
Or declare it as A[400][4]; // 400 rows of 4 cols A[399][0]
A[399][1]
A[399][2]
A[399][3]
Topic archived. No new replies allowed.