Advertisement
Sabbir-bin

find_vowel

Dec 6th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.   char c;
  5.   printf("Enter the latter: ");
  6.   scanf("%c",&c);
  7.    if(c=='U' || c=='u' || c=='a'|| c=='A'|| c=='e'|| c=='E' ||c=='i' || c=='I' ||c=='o'||c=='O')
  8.  
  9.   printf("\nThis is %c vowel",c);
  10.  
  11. else
  12.  
  13.     printf("\nThis is %c not vowel",c);
  14.  
  15.   return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement