✍️ Write a program to input 10 numbers into an integer array and 20 numbers into an another integer array now merge them after reversing both of them ✍️
✅ Best answers with verified output ✅
Answers
Answered by
0
Answer:
Given an array (or string), the task is to reverse the array/string.
Examples :
Input : arr[] = {1, 2, 3}
Output : arr[] = {3, 2, 1}
Input : arr[] = {4, 5, 1, 2}
Output : arr[] = {2, 1, 5, 4}
Explanation:
HOPE MY ANSWER HELPS
Answered by
3
Hope that the above attachment helps !
Attachments:
![](https://hi-static.z-dn.net/files/dc7/9d0c43cff26727db67c4e15c4e6e8eb1.jpg)
Similar questions