Computer Science, asked by anadikedia4, 8 months ago

wap in bluej to input a string and display the count of vowel​

Answers

Answered by wwwsaiswarup2005
0

Explanation:

sorry no idea of that okk

Answered by guthikondakovipcr9zl
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; }

I hope this is Will help you

Similar questions