Computer Science, asked by adhirkumardas88, 1 month ago

Writeba program to accept a string and display the number of vowels present in the string​

Answers

Answered by Nikitacuty
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 singhuttam1608
0

a e i o u are the five vowels present in the string

Similar questions