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,970 questions

51,912 answers

573 users

How to count the white spaces in a string in C++

2 Answers

0 votes
#include <iostream>

int count_white_spaces_in_string(const char* s) {
    int white_spaces = 0;
    const char* p = s;
    
    while (*p != '\0') {
        if (*p == ' ' || *p == '\n' || *p == '\t' || *p == '\r') {
            white_spaces++;
        }
        p++;
    }

    return white_spaces;
}

int main() {
    const char* s = "C++ \r Programming \n Developer \t  ";
    
    std::cout << "White spaces = " << count_white_spaces_in_string(s) << std::endl;
}


   
/*
run:
   
White spaces = 10

*/
 

 



answered Oct 19, 2024 by avibootz
0 votes
#include <iostream>
#include <string>

int count_white_spaces_in_string(std::string str) {
    int white_spaces = 0;

    for (char ch : str) {
        if (ch == ' ' || ch == '\n' || ch == '\t' || ch == '\r') {
            white_spaces++;
        }
    }
    
    return white_spaces;
}

int main() {
    std::string str = "C++ \r Programming \n Developer \t  ";
    
    std::cout << "White spaces = " << count_white_spaces_in_string(str) << std::endl;
}


   
/*
run:
   
White spaces = 10

*/
 

 



answered Oct 19, 2024 by avibootz

Related questions

1 answer 247 views
1 answer 94 views
1 answer 107 views
1 answer 91 views
1 answer 82 views
1 answer 91 views
1 answer 67 views
...