语句中的标记数

Number of tokens in the statement

语句中的标记数:

printf(“i=%d,&i=%x”,i,&bi);

有人能说说吗?

1 printf=函数(标识符),
2 (=ParenthesisOpen,
3 i=%d,&i=%x=String(模板由 printf 解析),
4 ,=逗号
5 i=变量(标识符),
6 ,=逗号
7 &=& 符号(参考),
8 bi=变量(标识符),
9 )=ParenthesisClose,
10 ;=语句结束