为什么这个子函数不能读取这个数组
我在main函数之前定义了两行:static float results[Num_of_Results]; //Num_of_Results为整型常量
void calc_cycle (float volt_value); //calc_cycle为定义的子函数
当我用calc_cycle(results)读取results一维数组时出错
错误为:argument of type 'float' is incompatible with parameter of type 'float'
错在哪里了?求解