2D 配列を関数に渡す方法 1 つ作成し、この配列を初期化する関数を定義したいと考えました。
#include <iostream>
using namespace std;
int n = 5;**strong text**
void wypelnijTabliceBooli(bool** b){
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++)
b[i][j] = 0;
}
}
int main(){
bool b[n][n];
wypelnijTabliceBooli(b);
return 0;
}
そして私は得る
error: cannot convert 'bool (*)[(((unsigned int)(((int)n) + -0x000000001)) + 1)][(((unsigned int)(((int)n) + -0x000000001)) + 1)]' to 'bool**' for argument '1' to 'void wypelnijTabliceBooli(bool**)'|