Write a program that averages ten homework grades entered by the user. Allow for a bonus homework grade that can count as 5 extra points on their average. Create at least two functions (excluding main() ) in your program. In the first function, prompt the user for their grades and whether they completed the EC. In a sceond function, average the grades. Finally, output the average to the user from inside of main.
A template is available for your use below
#include
using namespace std;
//function declarations here
int main()
{
return 0;
}