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

51,776 answers

573 users

How to enter input number into an array in C

1 Answer

0 votes
#include <stdio.h> 
#include <math.h> 

int countdigits(int n);

int main(void)
{   
    int arr[10] = {0}, n, e;
 
    printf("Enter a number: ");
    scanf("%d",&n);
     
    int size = countdigits(n);
 
     for (int i = size - 1, j = 0; i >=0; i--, j++)
     {
          e = pow(10, i);
          arr[j] = n/e;
          n = n%e;
     }
     for (int i = 0;i < size; i++)
         printf("%d", arr[i]);
         
    return 0;
}

int countdigits(int n)
{
    int count = 0;
 
    while (n != 0)
    {
        n /= 10;
        count++;
    }
     
    return count;
}

 
/*
run:
   
Enter a number: 12345
12345

*/

 



answered Nov 14, 2016 by avibootz

Related questions

1 answer 143 views
2 answers 212 views
1 answer 155 views
2 answers 165 views
2 answers 108 views
108 views asked Apr 1, 2024 by avibootz
...