Please write a program that receives 'A' then outputs 'A'-'Z'. However, if a vowel (A, E, I, O and U) appears, it will show '?' instead.
Example(template)
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
char a; // can be changed
printf("Enter your input:"); //DO NOT CHANGE
scanf("%c",&a);
// Your conditions start from here
return 0;
}
Input
Enter your input:A
Output
Enter your input:A
?BCD?FGH?JKLMN?PQRST?VWXYZ