linux下的gcc编译器

源代码在线查看: s-longdouble-a-char.c

软件大小: 30755 K
上传用户: xfzzp_0321
关键词: linux gcc 编译器
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 								static struct sss{				  long double f;				  char a[10];				} sss;								#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)								int main (void) {				  printf ("++++Array of char in struct starting with longdouble:\n");				  printf ("size=%d,align=%d\n",				          sizeof (sss), __alignof__ (sss));				  printf ("offset-longdouble=%d,offset-arrayof-char=%d,\nalign-longdouble=%d,align-arrayof-char=%d\n",				          _offsetof (struct sss, f), _offsetof (struct sss, a),				          __alignof__ (sss.f), __alignof__ (sss.a));				  printf ("offset-char-a[5]=%d,align-char-a[5]=%d\n",				          _offsetof (struct sss, a[5]),				          __alignof__ (sss.a[5]));				  return 0;				}							

相关资源