May 15, 2015 at 8:21pm
No clue what you are trying to do or accomplish here?
May 16, 2015 at 12:44am
It works if you remove the templates.
Also this line: for(int i=size;i>0;i--)
Change it to: for(int i=size-1;i>=0;i--)
You want it to start from the 4th element and go all the way down to the 0th element.
Last edited on May 16, 2015 at 12:45am