Tagged Questions

2
votes
2answers
494 views

Reading ASCII numbers using “D” instead of “E” for scientific notation using C

I have a list of numbers which looks like this: 1.234D+1 or 1.234D-02. I want to read the file using C. The function atof will merely ignore the D and translate only the mantissa. The function fscanf ...
1
vote
8answers
391 views

Why use 'e0' at the end of a defined constant in c?

I'm trying to debug a problem with a perl application that calls some c programs to do text editing. BATCH_JV_CSH_MAX is used to test the maximum value of an amount field. It currently indicates an ...