I need to pass the value of a pointer from one function to another.
I have it set up like this...
void GetTheMoney();
void FigureTheWinnings(int *, int &BetAmount);
void GetTheMoney()
{
int BetAmount, *BetAmt_ptr = &BetAmount;
cout << "\nEnter the amount you wish to bet.";
cin >>...