How to calculate exponent (base raised to the power of exp) (power function) in C

1 Answer

0 votes
#include <stdio.h>
#include <math.h>
 
int main(int argc, char **argv) 
{
    printf("%.2f\n",  pow(2, 2));
    printf("%.2f\n",  pow(2, 3));
    printf("%.2f\n",  pow(3, 2));
     
    return(0);
}
 
 
/*
run:
 
4.00
8.00
9.00
 
*/

 



answered Dec 13, 2015 by avibootz
...