徽班进京
sangix
全部博文(28)
2012年(3)
2011年(2)
2008年(2)
2007年(7)
2006年(14)
machiqia
shiyiLiu
kreensn
caisanpx
xrmmhh
hugowfye
hanye韩
luokaich
飞鸿无痕
分类: C/C++
2006-10-24 19:55:00
#include <stdio.h> int main (void) { long long a = 0xaaaabbbb; printf("sizeof(long long) = %d\n", sizeof(long long)); printf("a = %I64d\n", a); /* only for windows platform */ return 0; }
<<< ... >>> printf("a = %Ld\n", a); /* for GNU */
<<< ... >>> printf("a = %Ld\n", a);
/* for GNU */
printf("a = %lld\n", a); /* for GNU another way */ <<< ... >>>
printf("a = %lld\n", a);
/* for GNU another way */
<<< ... >>>
上一篇:C 的继承与动态链接
下一篇:C 的常用技巧
登录 注册