No I mean to let the stack=2*stack void dublicatestack(stack m2) { int m; while(!isEmpty()) { m=pop(); m2.push(m); push(m2.pop()); push(m); . . . . }