摘要: a++表示a先参与运算,然后再自增; ++a表示a先自增,然后再参与运算。 因此(a++) + 10中的a在此式中仍以原值参与运算,运算结束后再自增 #include <stdio.h> #include <string.h> int main() { int a = 15, b = 33; int 阅读全文
posted @ 2022-11-18 15:24 木凌云 阅读(628) 评论(0) 推荐(0)