Create a program with a class called ValRef that includes at least the two functions tripleByValue and tripleByReference.
The functions will use passing by value and passing by reference respectively to triple the value of its parameter. Let the data type involved be of type integer.
Create three files, a class header file, a class implementation file, and an application file that allows the user to input a value to be tripled.