Heim > Fragen und Antworten > Hauptteil
主要问题一直出现在这两行
warning C4047: '==' : 'char [10]' differs in levels of indirection from 'const int '
error C2059: syntax error : 'type'
虽然看得懂英语的意思,但是改来改去还是不行
已经在头文件里声明了结构体了
int count = 0;
typedef struct stu{
char num[10];
char name[10];
char sex[3];
int chinese;
int math;
int english;
float sum;
float avg;
struct stu *next;
}stu_link;
stu_link *head;
初学者 第一次因为作业要求使用链表 希望各位大神帮忙!