结构体数组,就是每个都是结构体类型的数组。
初始化 就是定义的时候 赋初始值。
你这个可以
struct A{ int a; int b;};struct A expr[6] = {{1,5},{4,4},{6,3},{10,2},{23,1},{100,0}};