+ 2
how can I reverse an array in c?
3 Antworten
+ 3
With for loop
+ 2
Optimised way to reverse an array elements by exchanging zero element with last element and increment/decrement indices and again exchange elements repeat this until mid-point is reached
Here exchage means swapping array values
DHANANJAY
+ 1
thank you guys i've managed to reverse an array