#include #include BOOL AllocateMemory(int ***iArray,int rows,int cols) { *iArray = (int**)calloc(rows,sizeof(int)); if(!*iArray) return false; for(int i =0;i < cols;i++) { **iArray = (int*)calloc(cols,sizeof(int)); if(!**iArray) return false; } return true; } void FreeAllocated(int **iArray,int rows,int cols) { for(int i = 0; i < rows;i++) { for(int x = 0;x < cols;x++) free(*iArray); free(iArray); } return; } void ShowArr(int **iArray,int rows,int ...