#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");
}
}
Subscribe to:
Post Comments (Atom)
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;...
-
#include<stdio.h> #include<conio.h> void main() { int n,r,rev=0; printf("Enter a number"); scanf("%d...
-
#include<stdio.h> int main() { char vol; int ascii; printf("enter number"); scanf("%c",&vol); asc...
-
#include <stdio.h> int main() { ...
No comments:
Post a Comment