+ 1
What is tokens in c???
4 RĂ©ponses
+ 4
J SIMI PRINCY CSE Use searchbar .
https://www.sololearn.com/Discuss/6921/?ref=app
+ 2
Please be clear with the question. The word token can lead to multiple interpretations, it can be related to code tokenizer, or string token etc.
You can write more in Description, e.g. where did you see the term, so people can check it out, and respond appropriately.
Some tips for future references đ
https://www.sololearn.com/Discuss/333866/?ref=app
https://code.sololearn.com/W3uiji9X28C1/?ref=app
+ 2
TOKEN is the smallest unit in a âCâ program.
In c tokens are divided into 6 types :
1) keyword
2) constant
3) operator
4) string
5) special character
6) identifier
+ 1
J SIMI PRINCY CSE
TOKEN is the smallest unit in a 'C' program. It is each and every word and punctuation that you come across in your C program. The compiler breaks a program into the smallest possible units (tokens) and proceeds to the various stages of the compilation.