我是靠谱客的博主 忧郁纸鹤,最近开发中收集的这篇文章主要介绍vc和gcc对C语言数据类型长度的定义,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

vc2010中......

测试代码:

#include <stdio.h>
#include <iostream>
int main()
{
printf("in windows ...n");
int l_char=sizeof(char);
printf("char ----> %dn",l_char);
int l_int=sizeof(int);
printf("int ----> %dn",l_int);
int l_short=sizeof(short);
printf("short ----> %dn",l_short);
int l_long=sizeof(long);
printf("long ----> %dn",l_long);
int l_float=sizeof(float);
printf("float ----> %dn",l_float);
int l_double=sizeof(double);
printf("double ----> %dn",l_double);
int l_ldouble=sizeof(long double);
printf("long double ----> %dn",l_ldouble);
system("pause");
return 0;
}

运行结果:


gcc中 ......

测试代码:

#include <stdio.h>
int main()
{
printf("in linux ...n");
int l_char=sizeof(char);
printf("char ----> %dn",l_char);
int l_int=sizeof(int);
printf("int ----> %dn",l_int);
int l_short=sizeof(short);
printf("short ----> %dn",l_short);
int l_long=sizeof(long);
printf("long ----> %dn",l_long);
int l_float=sizeof(float);
printf("float ----> %dn",l_float);
int l_double=sizeof(double);
printf("double ----> %dn",l_double);
int l_ldouble=sizeof(long double);
printf("long double ----> %dn",l_ldouble);
return 0;
}

运行结果:


可见在long double的长度定义上vc和gcc不一样,其他的都差不多。

最后

以上就是忧郁纸鹤为你收集整理的vc和gcc对C语言数据类型长度的定义的全部内容,希望文章能够帮你解决vc和gcc对C语言数据类型长度的定义所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部