#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