reshown by
945 views

4 Answers

7 votes
7 votes
There are 5 types of tokens in C Language :  constants, identifiers, operators, reserved words, and separators.

 ',' and '{'  fall under separator category.

Related questions

2 votes
2 votes
1 answer
1
Manu Thakur asked Sep 26, 2017
1,568 views
This screenshot is token from the book Ullman,How can following be a lexical error? because "elipseSize" should have a token recorded as an identifier.
2 votes
2 votes
5 answers
3
Mizuki asked Nov 11, 2018
1,840 views
What it the number of tokens in the following line?printf("%d numbers.", &x);
1 votes
1 votes
2 answers
4
Lovejeet Singh asked Nov 7, 2018
1,187 views
How will the compiler detect whether "if" is a keyword or an identifier?Please tell me the concept behind this.