摘要:
记录在vscode中使用ctrl+shift+p组合键在命令窗口搜索C/C++: Edit configurations显示no matching command问题的解决方法。 阅读全文
摘要:
前言 自增或自减操作符可大致分为2种情况: 1、在等式表达式中使用,如 a = a++; 2、单独使用,如 a++; 实例 1、在等式表达式中使用。 #include <stdio.h> int main() { int a = 0; a = ++a; //a先自增,再赋值 printf("a = 阅读全文