C++ Program to Count Word in Given Sentence

Advertisements

Prev Tutorial Next Tutorial

C++ Program to Find Number of Words in Given Sentence

To Find Number of Words in Given Sentence in C++ program we need to enter any Sentence for user side. After enter sentence count total number of words present in the given string, next search for spaces, if found any space then increase a variable say countword by 1 and continue to check for next space.

To understand below example, you have must knowledge of following C++ programming topics; For Loop in C++, Cin Function in C++ and Cout Function in C++.

Count Word in Given Sentence Program in C++

#include<iostream.h>
#include<conio.h>
#include<string.h>
#include<stdio.h>
void main()
{
	clrscr();
	char strs[100], countword=0, strword[15];
	int i, len;
	cout<<"Write any Sentence: ";
	gets(strs);
	len=strlen(strs);
	for(i=0; i<len; i++)
	{
		if(strs[i]==' ')
		{
			countword++;
		}
	}
	cout<<"Total Number of words in Given Sentence is: "<<countword+1;
	getch();
}

Output

Write any Sentence: Hitesh Kumar
Total Number of words in Given Sentence is: 2
c++ program to find number of words in given sentence
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements