Writeba program to accept a string and display the number of vowels present in the string
Answers
Answered by
2
Answer:
Count vowels in a string in C
- 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; }
Please mark me as brainliest answer
Answered by
0
a e i o u are the five vowels present in the string
Similar questions