How would I create a simple program..?
..using this as a header file included in the program.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
bool calcStdDev (double [], int, double &, double &);
bool inputData (double [], int &);
void outputData (double [], int);
bool inputFmFile (double [], int &);
void outputToFile (double [], int, double, double);
const int MaxStudents = 25;
const int MinStudents = 2;
|
I'm not sure where I need to start; i have to create a program that using this.
Add the following line:
int main() {}
That's all that is needed for it to compile and therefore fulfill the requirement of being a program.
Topic archived. No new replies allowed.