Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Routine name maximum length in Fortran 90

Tags:

fortran

Does anyone know if there is a maximum length for routine names and variable names in Fortran 90?

like image 481
malaboca Avatar asked Oct 19 '10 10:10

malaboca


1 Answers

Yes, the Fortran standards define a maximum length for names of things, including both routines and variables. In Fortran 90/95 the maximum length was 31 characters, in Fortran 2003 it is now 63 characters. In earlier versions it was as short as 6 characters. Your compiler may allow (non-standard) longer names.

like image 78
High Performance Mark Avatar answered Oct 10 '22 23:10

High Performance Mark