The number of tokens in the following C statement.
printf("i = %d, &i = %x", i, &i);
I think there are 12 tokens here. But my answer is wrong.
Can anybody tell me how to find the tokens in the above C statement?
PS: I know that a token is source-program text that the compiler does not break down into component elements.