fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. char* temp = "6.345e-02";
  6. float result = atof(temp);
  7.  
  8. printf("%f\n", result);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
0.063450