This is what I have, How would I declare the array based on what I already have?
#include <iostream>
#include <fstream>
#include "tempFns.h"
using namespace std;
int main (void)
{
// DO: declare an array of type double called temperatures
// Use the constant MaxDays for the number of rows
// and the constant MaxTimes for the number of columns
}
int numDays = 0; // holds number of days in the month
int numTimes = 0; // holds number of times the temperature is measured each day
// Read the data from a file
inputFmFile (temperatures, numDays, numTimes);
// Display the data on the screen
cout << "Temperature data before calculating averages." << endl;
outputData (temperatures, numDays, numTimes);
cout << endl;
// DO: Call the function tempAvg () here
tempAvg ();
// Display the data on the screen
cout << "Temperature data after calculating averages." << endl;
outputData (temperatures, numDays, numTimes+1);
cout << endl;
cout << "Bye!" << endl;
return 0;
}