我的任务是创建函数funCall,它有四个参数:
我在考虑这样的事情:
typedef int(*funPtr)(int, int);
funPtr arrayOfFuncPtrs[];
void funCall( *int[][]k, int a, *funPtr z, int b);
{
}
答案 0 :(得分:1)
typedef int(*funPtr)(int, int);
void funCall( int** array_2d, int num_of_nums, funPtr* fn_ptr_array, num_of_fn_ptrs)
{
}
像这样?