c++
Write a recursive function named stutterStack that takes in a reference to a stack of integers and replaces each integer with two copies of that integer. For example, if a stack s stores 1, 2, 3). then stutterStack (s) changes it to (1, 1, 2, 2, 3, 3) Show transcribed image text Write a recursive function named stutterStack that takes in a reference to a stack of integers and replaces each integer with two copies of
OR
OR