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


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

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