My code below attempts to (1) create a multidimensional pointer array; (2) populate it with numbers; (3) print the populated array as a table; (4) delete the array; and finally (5) print the (now deleted) array as a table, again.
What's puzzling me is that the second printed table shows what appear to be random numbers for all but the last row of my array. The random numbers are expected, given the pointer has been deleted, but what's going on with the last row?