printf返回值为int型,是输出字符的个数,'\n'也算数。
如
void main(){ int a=123; printf("%d",printf("%d",printf("%d",a))); printf("%d",printf("\n"));}
输出:
12331
1