You are viewing a single comment's thread. Return to all comments →
int main() { int num, arr[1000] = {0}, i; scanf("%d", &num); for(i = 0; i < num; i++) { scanf("%d", &arr[i]); } /* Write the logic to reverse the array. */ for(i = 0; i < num; i++) { printf("%d ", arr[num-i-1]); } return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Array Reversal
You are viewing a single comment's thread. Return to all comments →
For C
int main() { int num, arr[1000] = {0}, i; scanf("%d", &num); for(i = 0; i < num; i++) { scanf("%d", &arr[i]); } /* Write the logic to reverse the array. */ for(i = 0; i < num; i++) { printf("%d ", arr[num-i-1]); } return 0; }