Computer Science, asked by Anonymous, 6 months ago

✍️ 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 gurnoorkaur37
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 MƦAttrαctívє
3

Hope that the above attachment helps !

Attachments:
Similar questions