Write a program to count vowels and consonants in a 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
2y
#include<stdio.h>
int main()
{
int i , cc=0,cv=0;
char str[]="My Name is Kirti";
for(i=0;i<strlen(str);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


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

