I have wrote a simple average calculation program trying to calculate a semester average. When I compile the code I get an error telling me my 'inputExam' function was not declared in this scope. I've researched the error message and I can't figure out what to do to fix it.
I also get this error for the other functions, but once I understand my error I think I can fix the others.
Declare the functions before main...
The computer doesn't know these functions exist you have to tell it before you call it...
Either move all your other functions before int main()
Or
Declare them before main (suggested)