[Solved] Too few arguments to function error? (C++) [closed]

[ad_1]

Function argument is missing in findHighest() function.

The function deceleration is void findHighest(double sale[]);

You are not supplying argument double sale[]

Thus replace the line findHighest() [the line before system(“PAUSE”) statement ]with findHighest(sale)

2

[ad_2]

solved Too few arguments to function error? (C++) [closed]