Queries to find the count of vowels in the substrings of the given string
Given string str of length N and Q queries where every query consists of two integers L and R. For every query, the task is to find the count of vowels in the substring str[L...R]. Examples: Input: str = "geeksforgeeks", q[][] = {{1, 3}, {2, 4}, {1, 9}} Output: 2 1 4 Query 1: "eek" has 2 vowels. Que