fork download
  1. #include <cstdio>
  2. #include <cmath>
  3.  
  4. int main(){
  5. double x = 3;
  6. double y = 4;
  7.  
  8. printf("y power x is = %lf\n", pow(y,x));
  9. y=x;
  10. printf("%lf", y);
  11. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
y power x is = 64.000000
3.000000