public static void Main()
Console.Write("\n\nFind maximum occurring character in a string :\n");
Console.Write("--------------------------------------------------\n");
Console.Write("Input the string : ");
var str = "Nothing in the world can take the place of Persistence.";
char character = (char)default;
int[] ch_fre = new int[255];
if(ch_fre[i] > ch_fre[max])
Console.Write("The Highest frequency of character '{0}' is appearing for number of times : {1} \n\n", character, times);