The Program gets Input a String from user and then count the Number of word contain that String. A Condition on space between the sentence is used to accomplish this task.
Source Code
#include<iostream>
#include<conio.h> #include<stdio.h> using namespace std; int main( ) { //clrscr( ); char str[80]; int words=0; cout<<"Enter Your Story to Count Words:"; gets(str); for(int i=0;str[i]!='\0';i++) { if (str[i]==' ') words++; } cout<<"Your Story Consist of ="<<words+1 <<" Words"<<endl; getch(); return 0; }
0 comments:
Post a Comment