in python, there is function to reverse the elements in an array, I believe it is just 'reversed arraname()'
Is there such a thing in C++? I have looked throught the fundamentals page and glanced through a C++ turorial and cannot find that function.
I am trying to arrange Array[1,2,3,4,5,6] to array[6,5,4,3,2,1]
Roger Ayotte