Previous: VERIFY, Up: Intrinsic Procedures
XOR
— Bitwise logical exclusive ORThis intrinsic routine is provided for backwards compatibility with
GNU Fortran 77. For integer arguments, programmers should consider
the use of the IEOR intrinsic defined by the Fortran standard.
RESULT = XOR(X, Y)
X | The type shall be either INTEGER(*) or LOGICAL .
|
Y | The type shall be either INTEGER(*) or LOGICAL .
|
INTEGER(*)
or LOGICAL
after cross-promotion of the arguments.
PROGRAM test_xor LOGICAL :: T = .TRUE., F = .FALSE. INTEGER :: a, b DATA a / Z'F' /, b / Z'3' / WRITE (*,*) XOR(T, T), XOR(T, F), XOR(F, T), XOR(F, F) WRITE (*,*) XOR(a, b) END PROGRAM