摘要:
#include #include typedef struct node{ int data; struct node *next; }N; N *head = (N *)malloc(sizeof(N));//创建头结点 void main(){ N *r = head;//尾指针,开始指向头结点 N *newPoint; printf("请输入任... 阅读全文
摘要:
#include #define n 200 struct student { long num; char name[20]; float score; }; void main() { int i, j; struct student stu[n + 1]; struct student *p_stu; p_stu = stu+1;... 阅读全文