Given three function parameters p1, p2, p3, rotate the values to the right. Rotate means to shift each item to the item on the r
ight, with the rightmost item rotating around to become the leftmost item. If initial values are 2 4 6, final values are 6 2 4. Hints: Required:
Declare the function's three parameters as reference type. Function return type is void.