I take one look at this project, define my structure.....and my brain goes numb. I don't know where to star.....
///////project///////
Write a program that dynamically allocates an array large enough to hold a user defined number of structures (string name and three double tests). Using a function, the user will enter a name and three test scores for each element in the array. Using another function, the user will sort the array into ascending order by name. Using a third function a table will be displayed on the screen (under a header labeling each column) showing:
Name Test 1 Test 2 Test 3 Average
Then average for each element (three test grades / 3) will be calculated by a fourth function as it is being displayed.
help of any kind is greatly appreciated
#include <iostream>
struct grades
{
char name;
double test1;
double test2;
double test3;
};
using namspace std;
int main()
{
system("pause")
return 0;
}