Print the most occurring character in an array of strings
Given an array arr[] of lowercase strings, the task is to print the most occurring character in the set of strings.Examples: Input: arr[] = {"animal", "zebra", "lion", "giraffe"} Output: a Explanation: The frequency of 'a' is 4 which is highest. Input: arr[] = {"aa", "bb", "cc", "bde"} Output: b App