Program : Write a program that does the following: .Declare three integer variables in main0, called var1, var2, var3
Perform three function calls: o o o getValues
- Should ask the user for input for three integers doubleValues
-Should double the values of three integers displayValues
- Should display the value of three integers
Note: Do not use global variables and do not use reference variables.
Do not use pointers in main, they don't need to be pointers in the main function (you will need the address operator)
Note: Use pointer variables only where needed.