[讨论]左结合,右结合
#include "stdio.h"
int main()
{
int i ;
printf("%d",i,i++)
getch();
}
的结果????
#include "stdio.h"
int main()
{
int i ;
printf("%d",i,i++)
getch();
}
的结果????
2006-08-02 17:52
2006-08-02 18:05
2006-08-02 18:06
2006-08-02 18:22

2006-08-02 18:26
2006-08-02 18:27
2006-08-02 18:59
2006-08-02 20:42
2006-08-02 20:43
假如输入的是2,则输出,3和2,printf在TC中是右结合性
2006-08-02 21:01