an array of ten pointers to ints, or is it a pointer to an array of ten ints?
thnx.
Name:
Anonymous2013-02-23 19:17
and is
int **B[10][15];
a two dimensional 10x15 array of pointers to pointers to ints, or is it a pointer to an 10 length array of pointers to 15 length arrays of ints, or is it a pointer to a pointer to a two dimensional 10x15 array of ints, or is it a 10 length array of pointers to pointers to a 15 length array of ints, or is it a 10 length array of pointers to 15 length arrays of pointers to int?