Computer Science, asked by anadikedia4, 9 months ago

write a program in bluej to input a string and display the count of vowel.​

Answers

Answered by uniqueboypaul
16

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; }

Google answer ☺️

Answered by sangeetadas59023
1

Answer:

see ok.................. . ....

Attachments:
Similar questions