lianpeng16 发表于 2019-6-18 17:33:30

请问这个提示的错误原因是因为什么

#include<stdio.h>
#include<string.h>

struct student
{
        char num[];
        float height;
        float weight;
        float score;
       
       
};

int main()
{
        struct student ip;
        strcpy(ip.num,"201400789");
        ip.height = 178.5;
        ip.weight = 72.25;
        ip.score = 60.5;
        printf("%s\n%f\n%f\n%f\n",ip.num,ip.height,ip.weight,ip.score);
}
这个结构体成员把char num[];就会提示错误error C2229: struct 'student' has an illegal zero-sized array
但是改为下面这样就没有错误
struct student
{
        char num;
        float height;
        float weight;
        float score;
       
       
};
或者
struct student
{
       
        float height;
        float weight;
        float score;
        char num[];
       
};

wp231957 发表于 2019-6-18 17:37:09

显然需要分配空间   我不认为最下面的能通过编译

newu 发表于 2019-6-18 17:47:06

在结构体中定义数组,必须指定大小,

其次,第二种虽然你编译通过了,但是数组的大小实际上会是0,

lianpeng16 发表于 2019-6-18 18:50:31

newu 发表于 2019-6-18 17:47
在结构体中定义数组,必须指定大小,

其次,第二种虽然你编译通过了,但是数组的大小实际上会是0,

好的,谢谢

lianpeng16 发表于 2019-6-18 18:51:37

wp231957 发表于 2019-6-18 17:37
显然需要分配空间   我不认为最下面的能通过编译

最下面那个编译通过了的
页: [1]
查看完整版本: 请问这个提示的错误原因是因为什么