标签: c printf output
int x=10; int y=5; printf("%d",(y,x));
所以,这是代码。此代码在运行时打印10。我想知道它是如何做到的。具体来说,逗号和括号在printf语句中的作用。