fork download
  1. /* My C program */
  2. #include <stdio.h>
  3. #include <math.h>
  4. #define E 2.71828
  5. int main(void) {
  6. const float x=3.981;
  7. const float z=0.512;
  8. //const float e=2.71828; Math.E
  9. float b=0.0;
  10. b=sqrt(exp(x-1)/sin(z));
  11. printf ("Final result is b= %f",b);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5284KB
stdin
0.1
stdout
Final result is b= 6.342384