Visa Inc. Interview Question

Given a sting write a function to print all vowels present in string in reverse manner.

Interview Answer

Anonymous

Sep 26, 2024

I wrote the code in c++. First I took input and then traverse through whole sting from back and if any character is vowel I print that.