c语言 这个编程有什么问题? 怎么不能运行

日期:2021-10-26 16:18:57 人气:1

c语言 这个编程有什么问题? 怎么不能运行

/*缺少下面两行include 文件*/
#include <stdio.h>
#include <stdlib.h>
/*少了下面的学生结构体定义*/
struct stu{
int index;
float score;
struct stu *next;
};
void CreateList(struct stu *head)
    A+
热门评论