C Program For Count A Words In Given String Even Enter No Of Space’s Between String

#include <stdio.h>
#include <stdlib.h>
int main()
{
    char str[100];
    int i;
    int words=1,characters=0,space=0;
    printf("Please enter the string \n");
    gets(str); //store the given string
    i=0;
    while(str[i] != '\0'){
            if(str[i]!=' '){ // count characters
                characters++;
            }
             else if(str[i]==' ' || str[i] != '\n' || str[i] != '\t'){
                words++; // count words
            }
            i++;
    }
printf("\nTotal words: %d ",words);  //display total number of words
printf("\nTotal characters: %d",characters);  //display total number of characters
printf("\nSpace: %d ",(words-1));  //display total number of space
getch();
    return 0;
}

Output:

Please enter the string
code4coding.com C language tutorials
Total words: 4
Total characters: 33
Space: 3
Sharing Is Caring

Leave a Comment