Write A C++ Program To Reverse An Array In O(n);
ARRAY :-
Array act to store related data under a single variable name with an index, also known as a subscript. It is easiest to think of an array as simply a list or ordered grouping for variables of the same type. As such, arrays often help a programmer organize collections of data efficiently and intuitively.
Output:
Enter The Size of Array
6
Enter The Elements of Array
1 2 3 4 5 6
Reverse Array Is
6 5 4 3 2 1
need an explanation for this answer? contact us directly to get an explanation for this answer