WAP to count vowels in string.
Answers
Answered by
0
Answer:
C program to count number of vowels in a string
int main() { int c = 0, count = 0; char s[1000];
printf("Input a string\n"); gets(s);
printf("Number of vowels in the string: %d", count);
return 0; }
Explanation:
Answered by
2
Answer:
C program to count number of vowels in a string
int main() { int c = 0, count = 0; char s[1000];
printf("Input a string\n"); gets(s);
printf("Number of vowels in the string: %d", count);
return 0; }
Similar questions
Chemistry,
1 month ago
World Languages,
1 month ago
History,
3 months ago
World Languages,
3 months ago
Math,
10 months ago