C-嵌套结构的结构问题类型



我在结构上几乎没有问题。这是我的结构块:

#define STD_NAME 30
#define COURSE_LIMIT 10
#define COURSE_NAME 50
#define COURSE_CODE 6
#define COURSE_ACRONYM 8
typedef struct {
    int course_id;
    char* course_name[COURSE_NAME];
    char* course_code[COURSE_CODE];
    char* course_acronym[COURSE_ACRONYM];
    int quota;    
}course_t;
typedef struct {
    int std_id;
    char std_name[STD_NAME];
    double std_gpa;
    struct course_t* courses[COURSE_LIMIT]; //nesting part
}student_t;

我尝试使用嵌套的结构和指针。例如,要获取课程的配额,我在这样的主函数中使用简单块:

int main(void){
   student_t studentProfile;
    for(int i = 0; i < COURSE_LIMIT; i++)
    {
        printf("Enter the %d. course quota: ", i + 1);
        scanf("%d", &studentProfile.courses[i]->quota);
    }
    return 0;
}

但是当我编译此代码时,我会收到一个错误:

dereferencing pointer to incomplete type ‘struct course_t’
         scanf("%d", &studentProfile.courses[i]->quota);

我不知道如何修复"推迟指针为不完整的类型",因为它与指针有点混乱。我应该使用内存分配吗?

typedef struct {
    int std_id;
    char std_name[STD_NAME];
    double std_gpa;
    struct course_t* courses[COURSE_LIMIT]; //nesting part
  //^^^^^^^^^^^^^^^^
}student_t;

此时没有struct course_t的类型。只有course_t类型;它们不可互换。

该行应该简单地为

    course_t* courses[COURSE_LIMIT];

相关内容

  • 没有找到相关文章

最新更新