Company: idfc_6aug
Difficulty: medium
Words Starting with Vowels in Sorted List Problem Description Write a program that takes a list of words as input and sorts the list of words in alphabetically ascending order. Identify the words in the sorted list that start with a vowel (a, e, i, o, u) regardless of their case. Display each of these words along with their positions in the sorted list. Read the input from STDIN and write the output to STDOUT. You should not write arbitrary strings while reading the input and while printing as these contribute to the standard output. #include <bits/stdc++.h> using namespace std; void findWordAndPositionContainsVowel(string words) { //Here, words is the given input string // WRITE YOUR CODE HERE. } int main() { string words; getline(cin, words); findWordAndPositionContainsVowel(words); return 0; } Constraints There is at least 1 word in the given list that starts with vowels. If there is no word starting with vowel then print 0 as output. Input Format The first line of input conta