Saturday, April 6, 2013

pow10 function

#include<stdio.h>
#include<math.h>
 
main()
{
   int x = 5;
   double result;
 
   result = pow10(x);
 
   printf("Ten raised to %d is %lf\n", x, result);
 
   return 0;
}

No comments:

Post a Comment