retagged by
725 views
0 votes
0 votes
cosider the following normal statement:

DO 5 I =1.25

also consider the following FORTRAN 90 statement:

D0 5 I = 1.25

the difference between numbers of tokens in both the statement is____???

my doubt is what is FORTRAN 90??  what is difference between normal way of creating a token and this lang??
retagged by

1 Answer

0 votes
0 votes

In FORTRAN (90 and 77) white spaces are insignificant. LINK

DO 5 I = 1.25
<variable, "DO5I"> <assign> <number,"1.25">

Related questions

2 votes
2 votes
5 answers
2
Mizuki asked Nov 11, 2018
1,866 views
What it the number of tokens in the following line?printf("%d numbers.", &x);
1 votes
1 votes
2 answers
3
Lovejeet Singh asked Nov 7, 2018
1,194 views
How will the compiler detect whether "if" is a keyword or an identifier?Please tell me the concept behind this.