Computer Science, asked by rahulpanjwani6756, 8 months ago

Write a program to reverse a string using for loop along with variable descriptions and comments

Answers

Answered by Devanshpandey1678
0

Answer:

Input : arr[] = {1, 2, 3}

Output : arr[] = {3, 2, 1}

Input : arr[] = {4, 5, 1, 2}

Output : arr[] = {2, 1, 5, 4}

Similar questions