Computer Science, asked by logic6768, 9 months ago

The number of tokens in the following C statement. printf("Gudlavalleru, Engineering College! \n"); is *

Answers

Answered by SilentCrafter
0

Answer:

2

Explanation:

Tokens are the smallest elements of a program, which are meaningful to the compiler.

The following are the types of tokens: Keywords, Identifiers, Constant, Strings, Operators, etc.

Here, Gudlavalleru, Engineering College! is a string and thus  tokn. \n is also  token as it tells the compiler to add a new line

Similar questions