つまり、基本的に、私がやろうとしているのは、配列を引数として渡すことです。私はそのようなアイデアを思いついた:
#include <stdio.h>
#include <stdlib.h>
int x;
void function(int array[][x]){
//stuff here
}
int main(){
x = random(10);
int array[10][x];
//initialize array
function(array[10][x]);
}
私はこれがうまくいくはずだと思ったが、それは私にメモを与える:
'int(*)[(unsigned int)(x)]'が必要ですが、引数は'int'型です</p>
どんな助けでもいただければ幸いです。