Write a program to count vowels and consonants in string

AnswerBot
1y

A program to count the number of vowels and consonants in a given string.

  • Iterate through each character in the string

  • Check if the character is a vowel or consonant

  • Increment the respective count

  • Return ...read more

JAJULA GAYATHRI
1y

s=input("enter string")

l=len(s)

vowels=0

cons=0

print("length of string",l)

for i in s:

if i in 'aeiou':

vowels=vowels+1

else:

cons=cons+1

print("vowels in string ",vowels)

print("consonants in string",cons...read more

Kirti Priya Maheshwari
1y

#include

int main()

{

int i , cc=0,cv=0;

char str[]="My Name is Kirti";

for(i=0;i

{

str[i] =tolower(str[i]);

if( str[i] =='a' || str[i] == 'e' || str[i] == 'i' || str[i] == 'o'...read more

Add answer anonymously...
Wittybrains Software Technologies Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter