You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
644 B
C#

using System;
public class Exercise4
{
public static void Main()
{
string str;
int l=0;
Console.Write("\n\nprint individual characters of string in reverse order :\n");
Console.Write("------------------------------------------------------\n");
Console.Write("Input the string : ");
str = Console.ReadLine();
l = str.Length - 1;
Console.Write("The characters of the string in reverse are : \n");
while (l >= 0)
{
Console.Write("{0} ", str[l]);
l--;
}
Console.Write("\n\n");
}
}