How to count the white spaces in a string in C

1 Answer

0 votes
#include <stdio.h> 

int count_white_paces_in_string(char* s) {
    int white_paces = 0;
    char* p = s;

    while (*p != '\0') {
        if (*p == ' ' || *p == '\n' || *p == '\t' || *p == '\r') {
            white_paces++;
        }
        p++;
    }

    return white_paces;
}

int main(void)
{
    char *s = "C \r Programming \n Developer \t  ";

    printf("white spaces = %i", count_white_paces_in_string(s));

    return 0;
}



/*
run:

white spaces = 10

*/


answered Oct 1, 2014 by avibootz
edited Oct 19, 2024 by avibootz

Related questions

2 answers 112 views
1 answer 121 views
1 answer 130 views
1 answer 120 views
1 answer 99 views
1 answer 116 views
1 answer 91 views
...