Reputation: 13
I have checked all the formats of the implicit type declaration but have not been able to find out the error in the following line . I have been running the code using f77 to compile this.
implicit real*4 (a-h,o-z)
while running the program it gives the following error for the above statement.
implicit real*4 (a-h,o-z)
1
Error: Unexpected character in variable list at (1)
Upvotes: 0
Views: 543
Reputation: 8237
A few basic rules if you are using F77 or earlier versions.
If you wish to use free format, use one of the later versions of fortran
Upvotes: 1