This won't compile... :(
#include
using namespace std;
void getScore(int& score);
char convertScoreToGrade(int cScore);
int main()
{
int courseScore;
cout > score;
cout =...
yayJul 20, 2006
Why doesn't it compile? What's the compiler saying?
Two reasons it won't work:
1. You don't keep the return of convertScoreToGrade() to a char variable.
2. You don't print out the returned va...