#include #define DIM1 2 #define DIM2 4 /****** * Author: G Towell * Created: August 2019 * Modified: Sep 18. 2019 * * Desc: * A little program to show row major array assignment and use pointer math to really * confirm that the memory is in row major order ******/ int main() { int arr[DIM1][DIM2] = {0,1,2,3,100,101,102,103}; /** * This does exactly what the {} does dor initializing the array for (int i=0; i