Go to the first, previous, next, last section, table of contents.


Bit Operations on Floating-point Data

g77 does not allow REAL and other non-integral types for arguments to intrinsics like AND, OR, and SHIFT.

For example, this program is rejected by g77, because the intrinsic IAND does not accept REAL arguments:

DATA A/7.54/, B/9.112/
PRINT *, IAND(A, B)
END


Go to the first, previous, next, last section, table of contents.