C Program to replace all lowercase vowels into uppercase in a string

Here is the C program to convert lowercase characters into uppercase and vice-versa. #include<stdio.h> #include<conio.h>   void main() {         char str[200];            int i=0;      ...