C# Program to Reverse a String with Predefined Function
Posted by Superadmin on August 14 2022 14:25:29

C# Program to Reverse a String with Predefined Function

 

This is a C# Program to reverse a string with predefined function.

Problem Description

This C# Program Reverses a String with Predefined Function.

Problem Solution

Here the String is Reversed using the predefined Function reverse().

Program/Source Code

Here is source code of the C# Program to Reverse a String with Predefined Function. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * C# Program to Reverse a String with Predefined Function
 */
using System;
class linSearch
{
    public static void Main()
    {
        Console.WriteLine("Enter Number of Elements you Want to Hold in the Array? ");
        string s = Console.ReadLine();
        int x = Int32.Parse(s);
        int[] a = new int[x];
        Console.WriteLine("\n Enter Array Elements : ");
        for (int i = 0; i < x; i++)
        {
            string s1 = Console.ReadLine();
            a[i] = Int32.Parse(s1);
        }
 
        Array.Reverse(a);
        Console.WriteLine("Reversed Array : ");
        for (int i = 0; i < x; i++)
        {
            Console.WriteLine("Element {0} is {1}", i + 1, a[i]);
        }
        Console.Read();
    }
}
Program Explanation

This C# program, we are reading the size of an array using ‘s’ variable. Using for loop we are entering the coefficient values of an array. The string is reversed using the predefined function reverse() by passing the value of ‘a’ variable as an argument. Another for loop is used to print the reverse of a string.

 
Runtime Test Cases
 
Enter Number of Elements you Want to Hold in the Array ? 5
Enter Array Elements : 2
3
4
5
6
Reversed Array :
Element is : 6
Element is : 5
Element is : 4
Element is : 3
Element is : 2