So, I have the following code to create a matrix using pointers:
size_t n; cin >> n; int **a = new int*[n]; for (size_t i = 0; i < n