I am passing a dynamically sized 2D array into a function. How would I be able to tell the row size and column size the array. I know I can do this to find the total number of elements in the array:
foo(const _T ***m_data) {
int dataSize = sizeof(*m_data)/sizeof(double);
}