设   struct student   { int no;char name[12]; char sex;float score[4]; }stu1;

在程序执行时,系统为stu1分配 多少个字节的内存空间。
2024-12-21 08:01:59
推荐回答(2个)
回答1:

36;程序如下:#include
using namespace std;
struct student
{ int no;char name[12]; char sex;float score[4];}stu1;
int main()
{
cout< return 0;
}
是36

回答2:

4+12+1+3+4*4=36 其中3个是填充字节