Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Meaning of "." between terms in Fortran

Status
Not open for further replies.

briand2

Technical User
Apr 3, 2002
56
0
0
GB
I am trying to understand some Fortran code that contains the following:
IF(NT.NE.0) GO TO 15
Could someone please explain this "." operator is / does?
Thank you.
Brian
 
In oldish fortran (post Fortran II, 1966 std), the comparison operators are .ne. .eq. .le. .ge. .lt. and .gt.

The logical operators are .not. .or. .and.

Your statement reads if nt is not equal to zero goto label 15

 
That's really helpful, thank you!
Regards,
Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top