1,415 views
0 votes
0 votes

Find Number Of Lexeme And Tokens in the Below FORTRAN Code. [ ignore the white spaces only ]
( pls also explain me what do the code mean )

  • DO 10 I = 100
  • DO 10 I=10,1
  • DO 10 I = 10.1

Please log in or register to answer this question.

Related questions

6 votes
6 votes
1 answer
3
Tech Geek asked Apr 3, 2018
19,709 views
What is the difference between lexeme and tokens?
1 votes
1 votes
1 answer
4
sagar27 asked Sep 21, 2018
5,209 views
Find no of tokens in below program.#include<stdio.h>main(){ int I; int *pi = &I; //parent pointer scanf("%d",pi); printf("%d\n", I+5);}