摘要: 先看一段奇葩代码: int x = 4; int y; y = (x++); printf("hello world. y = %d.\n", y); x = 4; y = (x++)+(x++); printf("hello world. y = %d.\n", y); x = 4; y = (x 阅读全文
posted @ 2016-05-14 09:43 宋桓公 阅读(1939) 评论(17) 推荐(3) 编辑