Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2026 Crash Course
NEET 2026 Crash Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
119 views
in String Handling and I/O Functions by (29.7k points)
closed by

An assignment Kumar has written a C++ program which reads a line of text and print the number of vowels in it. What will be his program code?

1 Answer

+1 vote
by (29.8k points)
selected by
 
Best answer

#include<cstdio>

#include<cctype>

#include<iostream>

using namespace std; 

int main() 

char line[80]; 

int i,vowel=0; 

puts(Enter a string”); 

gets(line); 

for(i=0;line[i]!=’\0′;i++) 

switch(tolower(line[i])) 

{

case ‘a’: 

case ‘e’: 

case ‘i’: 

case ‘o’: 

case ‘u’: 

vowel++;

cout<<“The number of vowels is “<<vowel;

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

...