fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. double & GetWeeklyHours()
  5. {
  6. double h = 46.50;
  7.  
  8. double &hours = h;
  9.  
  10. return hours;
  11. }
  12. //---------------------------------------------------------------------------
  13. int main()
  14. {
  15. double hours = GetWeeklyHours();
  16.  
  17. cout << "Weekly Hours: " << hours << endl;
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
Weekly Hours: 0