标题:long long 不合法 新人请教
取消只看楼主
李晓光
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-10-7
结帖率:0
已结贴  问题点数:20 回复次数:1 
long long 不合法 新人请教
#include<stdio.h>
int main(void)
{   
    unsigned int un=3000000000;
    short end=200;
    long big=65537;  
    long long verybig=12345678908642;
    printf("un=%u and not %d\n",un,un);
    printf("end=%hd and not %d\n",end,end);
    printf("big=%ld and not %hd\n",big,big);
    printf("verybig=%lld and not %ld\n",verybig,verybig);
    return 0;
    //帮我看看哪有问题为什么不能编译
}错误如下:::::


--------------------Configuration: 自己找的代码 - Win32 Debug--------------------
Compiling...
自己找的代码.c
D:\here\自己找的代码.c(7) : error C2632: 'long' followed by 'long' is illegal
D:\here\自己找的代码.c(7) : warning C4305: 'initializing' : truncation from 'const __int64 ' to 'long '
Error executing cl.exe.

自己找的代码.obj - 1 error(s), 1 warning(s)



   软件是 VC++ 6.0
搜索更多相关主题的帖子: return include 
2016-10-13 16:21
李晓光
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-10-7
得分:0 
是不是 VC6.0也不支持 inttypes.h头文件  碉堡了
2016-10-14 09:41



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-469730-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.513733 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved