I have the following error when I try to run my budget code in reference to this function. It says cannot convert 'float (*) (float)' to 'float' for argument '2' to 'float computeOther(float, float, float, float)'
budgetLiving, computeTax)
Without seeing your entire program it seems that on line 15 variable computeTithing's type is being interpreted by the compiler as a pointer to a function (aka function pointer) that takes float as an argument with return type also float whereas it should just be type float