Write a function that is passed an array of structs and performs calculations.  The function should locate the highest gpa from a group of students.  The function is passed the array of structs, the first element to be searched, and the last element to be searched.  The return value of the function is the highest gpa in the search range.    struct data{  string name;  double gpa; }; double highestGpa( data [ ],  int, int  ); data [ ] - array of structs to search int - first element to be searched int - last element to be searched return  - highest gpa from group

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.4: Arrays As Arguments
Problem 2E
icon
Related questions
Question

(CP6) Write a function that is passed an array of structs and performs calculations.  The function should locate the highest gpa from a group of students.  The function is passed the array of structs, the first element to be searched, and the last element to be searched.  The return value of the function is the highest gpa in the search range.   

struct data{
 string name;
 double gpa;
};

double highestGpa( data [ ],  int, int  );

data [ ] - array of structs to search

int - first element to be searched

int - last element to be searched

return  - highest gpa from group 

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr