那个大佬能解释一下代码下面的问题吗
#include <stdio.h>#include <stdlib.h>
#include <string.h>
#include <conio.h>
#define N 10
typedef struct studentRecord
{
charstuNo; //学号
charname; //姓名
int age; //年龄
float math; //数学
float English; //英语
float physics; //物理
} SR; //SR是干啥的???
struct //下面这个结构体是什么意思啊???
{
SR record;
float total;
} stu;
SR是变量名列表,下面哪个结构体,应该是结构体的嵌套!
页:
[1]