Multiple choice

What are tokens in C?

void main() {
  int const* p = 5;
  printf("%d", ++(*p));
}

  1. Collection of values having same data type

  2. The basic element recognized by the compiler

  3. The largest individual units of program

  4. Pointers

  5. References

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Tokens are individual words and punctuation marks in passage of text. In C, program the smallest individual units are known as C Tokens. C has Six types of Tokens - Keywords,  Strings, Identifiers, Operators, Constants and special symbols.