Čaute,
mám problem pri použiti dvojrozmerného poľa vo funkcii. Skúšal som niečo taketo ale nefunguje, bol by som vďačný za každú radu.
#include <iostream>
const int rows = 3;
const int cols = 3;
void nacitanie_matice(double *arr[][cols], int rows);
using namespace std;
int main() {
double matica[rows][cols];
nacitanie_matice(matica, rows);
for (int r = 0; r < rows; r++)
{
for (int c = 0; c < cols; c++)
cout << matica[r][c] << " ";
cout << endl;
}
cin.get();
cin.get();
return 0;
}
void nacitanie_matice(double *arr[][cols], int rows) {
for (int r = 0; r < rows; r++)
{
for (int c = 0; c < cols; c++)
cin >> arr[r][c];
}
}