#include <stdio.h>
struct my
{
int a;
char b;
int c
}my;
int main(void)
{
int ab;
int *cd;
void *ff;
printf("%d/n",sizeof(int));
printf("%d/n",sizeof(char));
printf("%d/n",sizeof(double));
printf("%d/n",sizeof(cd));
printf("%d/n",sizeof(ff));
printf("%d/n",sizeof(my))
;}
Linux version 2.6.24-22-generic (buildd@crested) (gcc version 4.2.3 (Ubuntu 4.2
benico@ubuntu:~$ ./test (PE860/Ubuntu系统:)
4
1
8
8
8
12
-bash-3.00$ ./test (T1000/Solaris系统:)
4
1
8
4
4
12
-bash-3.00$ ./test (X4100/Solaris系统:)
4
1
8
4
4
12
[benico@freebsd ~]$ ./test (PE860/FreeBSD系统:)
4
1
8
8
8
12
-bash-3.00$ ./test (P510/AIX系统)
4
1
8
4
4
12
T1000/Solaris系统:
硬件环境:1 颗UltraSPARC T1芯片,CPU 主频为1.0 GHz,八核四线程配置8 GB内存
软件环境:Solaris 10 Update 3 for SPARC
X4100/Solaris系统:
硬件环境:2 颗双核单线程的AMD Opteron 280芯片,CPU 主频为2.4 GHz,配置4 GB内存
软件环境:Solaris 10 Update 3 for x86/x64
PE860/Fedora系统:
硬件环境:1 颗双核单线程的Intel Xeon 3050芯片,CPU 主频为2.13 GHz,配置8 GB内存
软件环境:Fedora Core 10
PE860/Ubuntu系统:
硬件环境:1 颗双核单线程的Intel Xeon 3050芯片,CPU 主频为2.13 GHz,配置8 GB内存
软件环境:Ubuntu 8.04
PE860/FreeBSD系统:
硬件环境:1 颗双核单线程的Intel Xeon 3050芯片,CPU 主频为2.13 GHz,配置8 GB内存
软件环境:FreeBSD 6.2
P510/AIX系统:
硬件环境:2 颗双核单线程的Power 5芯片,CPU 主频为2.0 GHz,配置2 GB内存
软件环境:AIX 5 Release 3
不同的环境分配的空间不是都一样