struct Student { int math; int english; }后math和english还是数组吗,可以赋值吗
struct Student { int math; int english; }只是这个定义了结构体包含两项参数,在程序中声明变量时,可以声明含有多个结构体的数组变量
👌可以吧!