menu search
brightness_auto
more_vert
Write a program in C++, to count the number of words in a line of text
thumb_up_off_alt 1 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
 
verified
Best answer
#include <iostream>
#include <string>

using namespace std;

int main() {
 string line;
 int count = 0;

 cout << "Enter a line of text: ";
 getline(cin, line);

 for (int i = 0; i < line.length(); i++) {
 if (line[i] == ' ') {
 count++;
 }
 }

 cout << "Number of words in the line: " << count + 1 << endl;

 return 0;
}

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

Related questions

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
0 answers
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 1 like thumb_down_off_alt 0 dislike
1 answer
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
1 answer

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

648 users

...