我有 struct 和 function ,我想将一个数组指针分配给我的结构中的指针:
struct
{
int array[3][2]
}some_struct;
void example(some_struct* st, int array[3][2])
{
//st->array=array
//st->array[0]=array[0],st->array[1]=array[1],st->array[2]=array[2]
// how to do that ??
}