IAND (The GNU Fortran Compiler) (original) (raw)

PROGRAM test_iand INTEGER :: a, b DATA a / Z'F' /, b / Z'3' / WRITE (,) IAND(a, b) END PROGRAM