Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main () {
  5. int a,b;
  6. a = 2;
  7. b = 3;
  8. printf ("2 ^ 3 = %lf\n", pow (a,b));
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment