• 2021-04-14
    有定义语句struct man{ char name[10]; int age; float x;} w;则sizeof(int)的值为 ,sizeof(struct man)的值为 ,sizeof(w)的值为
  • 41818

    内容

    • 0

      经下列语句定义后,sizeof(x),sizeof(y),sizeof(a),sizeof(b)在微机上的值分别为(). char x=65; float y=7.3; int a=100; double b=4.5;

    • 1

      有如下定义: struct number { int a; char b; } num; 则sizeof(num)的值是______。

    • 2

      经下列语句定义后 ,sizeof(x),sizeof(y),sizeof(a),sizeof(b) 在 微机上的值分别为 (). char x; int y; long a; double b;

    • 3

      struct { int nValue; char szValue [20];} a;请问sizeof(a)为()

    • 4

      在16位系统中,定义以下结构体类型 struct s { int a; char b; float f; }; 则语句printf("%d",sizeof(struct s))的输出结果为()