# Course **Repository Path**: chesian/Course ## Basic Information - **Project Name**: Course - **Description**: C语言课程设计报告(学生奖学金管理系统) - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 0 - **Created**: 2017-02-11 - **Last Updated**: 2023-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 广东工业大学 C语言课程设计报告 题 目 学生奖学金管理系统 使用到的结构体变量: struct Student { char Sid[10]; char Sclass[20]; char Sname[20]; int Math; int English; int Physic; int Sum; int rank; struct Student *next; }; 简介:以上的结构体为学生奖学金管理系统的核心部分,是贯穿整个系统的灵魂。存储和读取都是以结构体的形式进行的,每个结构体包含着丰富的信息。