02-28-2019, 04:00 PM
2-dim array elements are accessed a[0 0]
anarray is pointer to an ARRAY(int) variable. Then anarray[0] is that variable, and anarray[0][0] is element 0 of that variable.
anarray is pointer to an ARRAY(int) variable. Then anarray[0] is that variable, and anarray[0][0] is element 0 of that variable.