Hi. I'm getting some erros i can't understand. Also, when I try to run the program it says that it can't find the .exe in the debug folder.
The signature of your implementation of CalcMean() does not match that of the declaration and usage.
double CalcMean(double, int); // declaration
double CalcMean(double values[], double nValues) // implementation
Actually, I think neither is correct. You want
double CalcMean(double values[], int nValues)
There are also some logical errors in your code.
David Wilkinson | Visual C++ MVP