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 digits, whitespace and all other characters from input in C

1 Answer

0 votes
#include <stdio.h>

int main(int argc, char **argv) 
{ 
    int ch, nwhite, nother;
    int ndigit[10];
    
    nwhite = nother = 0;
    
    for (int i = 0; i < 10; i++)
         ndigit[i] = 0;
    
    while ( (ch = getchar()) != EOF) // Enter & Ctrl + c to exit
    {
        if (ch >= '0' && ch <= '9')
            ndigit[ch - '0']++;
        else if (ch == ' ' || ch == '\n' || ch == '\t')
                 nwhite++;
             else
                nother++;
    }
    printf("\ndigits:");
    for (int i = 0; i < 10; i++)
         printf(" %d", ndigit[i]);
        
    printf(", white space = %d, other = %d\n", nwhite, nother ) ;
    
    return 0;
}

/*
  
run:
   
abc 1233 @#$    XYZ

digits: 0 1 1 2 0 0 0 0 0 0, white space = 7, other = 9

*/

 



answered Oct 20, 2015 by avibootz

Related questions

1 answer 179 views
1 answer 156 views
1 answer 148 views
148 views asked Nov 14, 2016 by avibootz
2 answers 213 views
...