0
C tokens
I wanna know all the c token.i am a beginner.
3 Antworten
+ 2
Jay Matthews
I think tokens in this context the op wants to know the classification of C Tokens. Reserved words goes inline with keywords. Lexical analyzer goes a lot deeper. You are speaking of compiler design what happens behind the scenes of the compiler. I think that may be a bit confusing for a newbie.
Here I have provided a diagram for C tokens.
http://www.atnyla.com/library/images-tutorials/c-token-in-c-programming.PNG
+ 1
Tokens are the smallest elements of a program, which are meaningful to the compiler.
The following are the types of tokens:
Identifiers
Keywords
Constants
Operators
Special Characters
Strings
I would like to recommend the use of a search engine for these types of questions.
0
What is a "C token"? I am not a beginner.