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 insert input digits into int array in C

2 Answers

0 votes
#include <stdio.h> 
 
#define ARR_SIZE 100

int main(void)
{   
    char ch;
    int arr[ARR_SIZE] = {0};
    int i = 0;

    while ( ( ch = getchar()) != EOF  &&  ch != '\n' &&  i < ARR_SIZE ) 
    {
        if (ch >= '0' && ch <= '9')
            arr[i++] = ch - '0';
    }
        
    for (int j = 0; j < i; j++)
        printf("%d\n", arr[j]);
    
    return 0;
}

   
/*
run:

1234567890
1
2
3
4
5
6
7
8
9
0

*/

 



answered Nov 18, 2016 by avibootz
0 votes
#include <stdio.h> 
 
#define ARR_SIZE 100

int main(void)
{   
    char ch;
    int arr[ARR_SIZE] = {0};
    int i = 0;

    while ( ( ch = getchar()) != EOF  &&  ch != '\n' &&  i < ARR_SIZE ) 
    {
        if (ch >= '0' && ch <= '9')
            arr[i++] = ch - '0';
    }
        
    for (int j = 0; j < i; j++)
        printf("%d\n", arr[j]);
    
    return 0;
}

   
/*
run:

12AB4567CDX89
1
2
4
5
6
7
8
9

*/

 



answered Nov 18, 2016 by avibootz

Related questions

2 answers 180 views
3 answers 252 views
1 answer 202 views
2 answers 232 views
1 answer 137 views
1 answer 140 views
1 answer 152 views
...