fortran - Type * error in gfortran -


when run code following error statements have following format. there problem type statement? if yes kindly provide me solution. running code on ubuntu 14.10 system. program long hence not posting if required can surely send it.

recfunk_ascii.f:622.12:

  type *,'enter back-azimuth limits ib1,ib2 (integers!)'                     1 error: invalid character in name @ (1) 

type obsolete , non-standard statement (see http://docs.oracle.com/cd/e19957-01/805-4939/6j4m0vnbi/index.html). not portable because many compilers not recognize it. should changed print statement, @francescalus suggest in comment.

print *,'enter back-azimuth limits ib1,ib2 (integers!)' 

Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -