c++pleaseWrite a function called shiftNums. Then test your function by calling from main. The function shiftNums is a void function and. .takes 4 integer parameters. After the function is called, and returns back to the caller, the 4 integer parameter values are shifted over. So if the function is called: int x 6; int y 7; int w 11; rotate( x, y, z, w); xwill be 11 (it gets the last value), y wil be 6,2 will
OR
OR