#include #include #include struct sinhvien { char name[50],code[10], class[10]; int score; }; struct NODE { sinhvien st; //dữ liệu của node NODE *next; }; typedef struct NODE node; struct list { struct node *head; struct node *tail; }; NODE *getNode(st ) { node *p; p=(node*)malloc(sizeof(node)); p->next=NULL; p->st; } int main() { }