fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3. int main(void) {
  4. double a=2;
  5. double b;
  6.  
  7. b=sqrt(a);
  8. printf("b=%lf",b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
b=1.414214