Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { printf("%f\n", pow(2.0, 8.0)); printf("%f\n", pow(3.0, 4.0)); printf("%f\n", pow(9.0, 0.5)); printf("%f\n", pow(8.0, -1.0)); printf("%f\n", pow(10.0, -2.0)); return 0; }
256.000000
81.000000
3.000000
0.125000
0.010000