c语言函数必须先定义后使用吗,求助,函数在其他函数中使用时要先声明后调用,这个没声明就用了...
该楼层疑似违规已被系统折叠隐藏此楼查看此楼如题,程序如下:#include#include //malloc,calloc,free,realloc头文件#define LEN sizeof(struct Student)struct Student{long num;float score;struct Student *next;};int n; ...