Question: Complete the implementation of the program by reading the guides given in the comment sections .please use c++ I changed some functions to be able
Complete the implementation of the program by reading the guides given in the comment sections .please use c++ I changed some functions to be able to post the question like finaltask


#include
using namespace std;
void getData(string caption, string *p_data) { cout > *p_data; }
// complete the getData function below to get the inputs // for coursework and finaltask marks void getData(string caption, float *p_data) {
}
// complete the highestMark function below to return // index with highest total marks (coursework + final task) int highestMark(string *n[], float *cw[], float *fe[]) { int idx = 0; float totalMark = 0, highestMark = 0; cout
// start the main function int main() { // array variable to store names as pointers of string string *names[3]; float *crswork[3], *finaltask[3]; for (int i = 0; i #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
