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

51,915 answers

573 users

How to calculate the sum of digits of 2 power 100 in C

1 Answer

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

int sumDigits(char array[]) {
    int sum = 0;
    
    for(int i = 0; array[i]; i++) {
        if (array[i] != '.') {
            sum += (array[i] - '0');
        }
    }  
     
    return sum;
}

int main(void)
{
    int base = 2;
    int exponent = 100;
   
    double power = pow(base, exponent); 
     
    printf("%lf\n", power);

    char array[64] = "";

    snprintf(array, 32, "%.32f", power);

    printf("sum = %d\n", sumDigits(array));
     
    return 0;
}
  
   
   
   
/*
run:

1267650600228229401496703205376.000000
sum = 115

*/

 



answered Nov 10, 2023 by avibootz

Related questions

1 answer 115 views
1 answer 71 views
1 answer 111 views
1 answer 109 views
109 views asked Nov 9, 2023 by avibootz
1 answer 79 views
1 answer 107 views
...