wai0512 发表于 2021-6-14 14:38:05

C语言中的 unknown type name

#ifndef __STRUCT__
#define __STRUCT__

#include <stdio.h>
#include <stdlib.h>

struct STU{
        int num;
        float score;
        char ID;
        char password;
        int root;
        STU *next;       
};





#endif

unknown type name 'STU'
请问这个的结构定义问题出在了哪,我是按教科书上编的啊,快哭了

人造人 发表于 2021-6-14 14:55:31

#ifndef __STRUCT__
#define __STRUCT__

#include <stdio.h>
#include <stdlib.h>

struct STU{
      int num;
      float score;
      char ID;
      char password;
      int root;
      struct STU *next;      
};






#endif
页: [1]
查看完整版本: C语言中的 unknown type name