You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/c/Basic/C Program to Count Number o...

27 lines
567 B
C

/*
* C Program to Count Number of Words in a given Text Or Sentence
*/
#include <stdio.h>
#include <string.h>
void main()
{
char s[200];
int count = 0, i;
printf("enter the string
");
scanf("%[^
]s", s);
for (i = 0; s[i] != ''; i++)
{
if (s[i] == ' ')
count++;
}
printf("number of words in given string are: %d
", count + 1);
}
enter the string
welcome to illuminate's c-programming app!
number of words in given string are: 5