Hey you guys, once again I need your forever greatful advise. I'm stuck getting this program to run. I tried differnt approaches to invoke the statement but none seems to work. Help.
#include <iostream>
#include <fstream>
using namespace std;
void ReadAndSum(ifstream&, int&, float&);
// Reads two integer values from a file. But from which file?????
int main ()
{
ifstream dataFile;
int numberOfValues;
float average;