Computer Science, asked by typewritter22, 10 months ago

WAP to find vowels in a given string.

Answers

Answered by YashPGN
1

Answer:

Please Explain your Question !

Explanation:

As I can see it is not the complete sentence or question !

Answered by malayalikutti
3

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:

⚡️☺️✔️✔️

Similar questions