fork(1) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4. #define EPS 1e-6
  5. int main(void)
  6. {
  7. float a, b, c, disc, p, q;
  8. printf("%f\n",EPS);
  9. printf("%e\n",EPS);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
0.000001
1.000000e-06