Improve the Mad Lib game from Chapter 5 by using references to make the program more efficient.
1
2
3
4
5
6
7
int main()
{
int score;
score = 1000;
float& rScore = score;
return 0;
}
1
2
3
4
5
int& plusThree(int number)
{
int threeMore = number + 3;
return threeMore;
}