摘要: while((c = getchar()) != ' ' && c != '\n') The first subexpression gives a value to c ,which then is used in the second subexpression. while(x++ < 10 && x + y < 20) The fact that the && operator is... 阅读全文
posted @ 2017-04-03 11:50 Micheal_you 阅读(121) 评论(0) 推荐(0) 编辑
摘要: REMEBER It demonstates a characteristic C programming style combing two actions in one expression. 阅读全文
posted @ 2017-04-03 11:02 Micheal_you 阅读(163) 评论(0) 推荐(0) 编辑