[solved]-Write Function Takes Array Ints Size Array Another Int Also Returns Double Call One Averag Q39067874
- Write a function that takes an array of ints, and the size ofthe array – another int. It also returns a double. Call this one‘average.’ Return a double that is the average of the values in thearray. Demonstrate that it works by finding the average of an arraywith these values {78, 90, 56, 99, 88, 68, 92}
- Write a function that takes one double parameter, and returns achar. The parameter represents a grade, and the char represents thecorresponding letter grade. If you pass in 90, the char returnedwill be ‘A’. If you pass in 58.67, the char returned will be an ‘F’etc. Use the grading scheme on the syllabus for this course todecide what letter to return.
C. Write a function that takes 3 int arguments andreturns the largest of the 3.
Expert Answer
Answer to Write a function that takes an array of ints, and the size of the array – another int. It also returns a double. Call… . . .
OR

