#include #include #include struct student{ char *name; int score; struct student* next;}stu,*stu1; int main(){ stu.name = (char*)malloc(sizeof(char)); strcpy(stu.name,"Jimy"); stu.score = 99; stu1 = (struct student*)malloc(sizeof(structstudent)) stu1->name =(char*)malloc(sizeof(char)) stu.next = stu1; strcpy(stu1->name,"Lucy"); stu1->score = 98; stu1->next = NULL; printf("name %s, score %d \n ",stu.name, stu.score); printf("name %s, score %d \n ",stu1->name, stu1->score); free(stu1); return 0;}
|
|