************************************************************************************************************************
C Program to find the number of Vowels and Number of Consonants in a given string
************************************************************************************************************************
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | #include<stdio.h> #include<conio.h> void main() { int v=0,c=0,i=0; charstr[25]; printf(“Enter the string…..”); scanf(“%s”,str); while(str[i]!=’\0’) { switch(str[i]) { case ‘A’; case ‘E’; case ’I’; case ‘O’; case ‘U’; case ‘a’; case ’e’; case ’i’; case ‘o’; case ‘u’; v++; break; default; c++; } i++; } printf(“\n The number of vowels is %d”,v); printf(“\n The number of consonants is %d”,c); getch(); } |
50 total views, no views today