0
votes

I am calling one subroutine and its showing me syntax error. I am using intel visual fortran with Visual studio. But before this I was running with compaq vidual fortran and it was running successfully. This is the line of code where the syntax error is:

call XLIMEX(n,Fcn,Jacobian,t_Begin,t_End,y,ys,rTol,aTol,h,Iopt, &
      Ropt,IPos,IFail)

I started from column 7 and end before column 77, how can I solve this issue? Thanks

1
You must show a complete piece of code and the compilation command you run including the file name and the full error message you get. Also learn how to format your question to be more readable. - Vladimir F
Awesome, Its running now. It was a small error. Next time I will try to put question more readable. - naman arora
It is more important to supply all the necessary information. The readability comes only after that. You should still add the info to make the question more complete for future visitors. - Vladimir F

1 Answers

2
votes

Because you mention the 7th column and the 70th column I suppose you use the fixed form source.

In fixed form you must continue using & (or other character) in the fifth column on the new line, not by & at the first line. The way you used is for the free form sources.