欢迎访问服务器技术网-www.fuwuqijishu.com

C语言的一个问题

程序设计 fuwuqijishu 2年前 (2022-10-01) 10次浏览 0个评论 扫描二维码

关于比如说: int a=10,b=11;
printf(“%d%d”,–a,++b);
结果会是什么呢?为什么?的问题

答案为912
–a是先把a自减1,然后再调用,此时a=9
++b是先把b自加1,然后再调用,此时b=12
printf(“%d%d”,–a,++b);
结果就是912
如果是
printf(“%d,%d”,–a,++b);
结果就为9,12了

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2600.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900