Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,926 questions

51,859 answers

573 users

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 88 views
1 answer 94 views
1 answer 106 views
1 answer 90 views
1 answer 82 views
1 answer 91 views
1 answer 67 views
...