Skip to content
Related Articles
Open in App
Not now

Related Articles

C | Misc | Question 7

Improve Article
Save Article
  • Difficulty Level : Medium
  • Last Updated : 01 Sep, 2021
Improve Article
Save Article

The number of tokens in the following C statement is

C




printf(\"i = %d, &i = %x\", i, &i);


(A)

3

(B)

26

(C)

10

(D)

21


Answer: (C)

Explanation:

In a C source program, the basic element recognized by the compiler is the “token.” A token is source-program text that the compiler does not break down into component elements. There are 6 types of C tokens : identifiers, keywords, constants, operators, string literals and other separators. There are total 10 tokens in the above printf statement. Below are tokens in above program.

printf
(
\"i = %d, &i = %x\"
, 
i
,
&
i
)
;


Quiz of this Question
Please comment below if you find anything wrong in the above post

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!