Quad interview question

Reverse an array

Interview Answer

Anonymous

13 Mar 2020

for (int i = array.length -1; i <= 0; i--) { // code... }