Ошибка возникает 0xC0000005, когда работает функция на моменте присваивания ячейке массива значения.
#include <cstdlib>
#include <iostream>
using namespace std;
void Foo(int** matrix, int const rows, int const cols)
{
for (int i = 0; i < rows; i++)
{
cout << "\n";
for (int j = 0; j < cols; j++)
{
matrix[i][j] = 1;
cout << "\t";
}
}
}
int main()
{
int rows = 0;
int cols = 0;
cout << "Введите столбцы - ";
cin >> rows;
cout << "Введите строки - ";
cin >> cols;
int** pmatr = new int* [rows];
Foo(pmatr, rows, cols);
for (int i = 0; 0 < rows; i++)
delete[] pmatr[i];
delete[] pmatr;
}