Im building a parser which contains a regular definition that defines scientific notation like the example below.
char source[] = "+2.7+E10"
When i apply atof i don't get the result desired. Instead i get this: 2.700000
printf("%f",atof(source));
Is there any way to get the correct result with this string?