鱼C论坛

 找回密码
 立即注册
查看: 2209|回复: 4

[已解决]long& int 的输出问题

[复制链接]
发表于 2018-6-9 20:32:57 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
  1. #include <stdio.h>

  2. int main(void)
  3. {
  4.         long sum =0;//int OK
  5.         long i;
  6.         while(i<10)
  7.         {
  8.                 if(i&1) //even
  9.                 {
  10.                         goto update;
  11.                         i++;
  12.                 }
  13.                 sum +=i;
  14. update:
  15.                 i++;
  16.         }
  17.         printf("sum = %ld\n", sum);
  18. }
复制代码
int&amp;long_printf.png
最佳答案
2018-6-9 23:34:11
When writing in C or C++, every datatype is architecture and compiler specific. On one system int is 32, but you can find ones where it is 16 or 64; it's not defined, so it's up to compiler.

https://stackoverflow.com/questions/7456902/long-vs-int-c-c-whats-the-point
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2018-6-9 21:29:34 | 显示全部楼层
我的VS2017,两个运行结果一样一样的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-6-9 23:34:11 | 显示全部楼层    本楼为最佳答案   
When writing in C or C++, every datatype is architecture and compiler specific. On one system int is 32, but you can find ones where it is 16 or 64; it's not defined, so it's up to compiler.

https://stackoverflow.com/questions/7456902/long-vs-int-c-c-whats-the-point
sum=20.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2018-6-10 14:53:15 | 显示全部楼层
xypmyp 发表于 2018-6-9 23:34
When writing in C or C++, every datatype is architecture and compiler specific. On one system int is ...

Your answer perfectly solved my puzzle! THX ^_^
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-6-10 15:11:06 | 显示全部楼层
oh perfect your english si so good
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-3-29 19:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表