C Program to replace lowercase vowels to uppercase in a string

Here is the C program to replace lowercase vowels to uppercase in a string #include<stdio.h> #include<conio.h> void main() {         char str[200];            int i=0;      ...