namespace FreshersCoderTesting
public class FreshersCoderDemo
public static void Main(string[] args)
Console.WriteLine("Welcome To FreshersCoder Tutorials: https://www.fresherscoder.com");
Console.WriteLine("\n\n");
Console.Write("Enter String: ");
string _string = Console.ReadLine();
if (!string.IsNullOrWhiteSpace(_string))
char[] _stringArray = _string.ToCharArray();
for (int i = 0; i < _stringArray.Length; i++)
Console.Write(_stringArray[i]);
for (int j = i; j < _stringArray.Length; j++)
if (i != j && _stringArray[i] == _stringArray[j])