Thursday, June 18, 2020

WAP to check if the input character is vowel or not. ( a e i o u )

#include<stdio.h>

int main()
{
 char vol;
 int ascii;
 printf("enter number");
 scanf("%c",&vol);
 ascii=vol;
 if(ascii=='a' || ascii=='e' || ascii=='i' || ascii=='o' || ascii=='u'){
     printf("vowel");
 }
 else{
     printf("not vowel");
    }
}

No comments:

Post a Comment

pattern

55555 4444 333 22 1 #include <stdio.h> int main() {     int i,j;     for(i=5; i>=1; i--)     {         for(j=1; j<=i;...