- 1,753
- 143
What's the difference between:
6.6725985D-20
and
6.6725985E-20
6.6725985D-20
and
6.6725985E-20
The difference between 6.6725985D-20 and 6.6725985E-20 lies in their representation of numerical precision in programming. The 'D' notation indicates double precision storage, while 'E' denotes single precision, commonly used in languages like Fortran. In Visual Basic (VB), the editor automatically converts 'D' to 'E' based on the precision defined in the Dim statement. Understanding these distinctions is crucial for programmers working with numerical data types.
PREREQUISITESProgrammers, software developers, and computer science students who are working with numerical data types and scientific notation in languages like Fortran and Visual Basic.