Your elderly neighbor’s beloved dog got off their leash and…

Your elderly neighbor’s beloved dog got off their leash and was hit by a car. You are getting home just as your neighbor is hurrying into the street to check her beloved pet which has not survived.  She is sobbing and screaming at the driver of the car and appears short of breath with a very red face.   As a nurse, you know the BEST thing to say to your neighbor in this situation is:

Write a C++ program using call by reference in both a void f…

Write a C++ program using call by reference in both a void function and a value-returning function. Your program should: Accept two integers from the user. Use a void function named doubleValues to double the values of both integers using call by reference. Use a value-returning function named mult to calculate and return the multiplication of the two modified values. This function should also use call by reference (with const references). Display: The original values entered by the user. The values after doubling. The multiplication of the doubled values.