Software Archive
Read-only legacy content

CHARACTER*(*)

Intel_C_Intel
Employee
197 Views
Is there a replacement for CHARACTER*(*) in FORTRAN95 that will eliminate warnings when compiling with strict 95 compliance?

If so, could somebody post a code snippet?
0 Kudos
2 Replies
Jugoslav_Dujic
Valued Contributor II
197 Views
Yes, it's CHARACTER(LEN=*). I think that CHARACTER(*) is also valid f95.
0 Kudos
Steven_L_Intel1
Employee
197 Views
Yes, CHARACTER(*) is standard in F95. The LEN keyword can be omitted since it's the first required specifier.

Steve
0 Kudos
Reply