Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference

ID 767251
Date 9/08/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

REAL(16) Constants

A REAL(16) constant has more than four times the accuracy of a REAL(4) number, and a greater range.

A REAL(16) constant occupies 16 bytes of memory. The number of digits that precede the exponent is unlimited, but typically only the leftmost 33 digits are significant.

IEEE* binary128 format is used.

Examples

Valid REAL(16) Constants

123456789Q4000

-1.23Q-400

+2.72Q0

1.88_16

Invalid REAL(16) Constants

1.Q5000

Too large.

1.Q-5000

Too small.

See Also