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

51,876 answers

573 users

How to implement the power function in C

1 Answer

0 votes
#include <stdio.h>
 
double myPow(double base, int exp) {
    double power = 1;
    
    while (1) {
        if (exp & 1)
            power *= base;
        exp >>= 1;
        if (!exp)
            break;
        base *= base;
    }
 
    return power;
}
 
int main()
{
    printf("%.2lf\n", myPow(2.0, 3));
    printf("%.2lf\n", myPow(3, 3));  
    printf("%.2lf\n", myPow(6.0, 2));
    printf("%.2lf\n", myPow(2, 2)); 
    printf("%.2lf\n", myPow(5.0, 2)); 
    printf("%.2lf\n", myPow(-2, 4));
     
    return 0;
}

 
 
/*
run:
  
8.00
27.00
36.00
4.00
25.00
16.00
 
*/

 



answered Jun 10, 2025 by avibootz
edited Jun 11, 2025 by avibootz

Related questions

1 answer 210 views
1 answer 53 views
1 answer 66 views
1 answer 62 views
1 answer 62 views
1 answer 76 views
...