in Compiler Design edited by
317 views
0 votes
0 votes

The number of tokens in the following $\text{C}$ statement is

        printf(“i = %d, j = %f, &i = %x\n”, i, j, &i);
  1. $10$
  2. $35$
  3. $46$
  4. $12$
in Compiler Design edited by
by
317 views

1 Answer

1 vote
1 vote

printf     "i=%d,j =%f,&i=%x/n" j  ,  &  i  ;

 

Total 12 Tokens, Hence D is the correct option.

Answer:

Related questions