Head First C 学习之结构体、联合、枚举、为字段(strcut、union、 enum、bitfield)
结构体位于HeadFirstC第220页:structfish{constchar*name;constchar*species;intteeth;//牙齿intage;};结构的大小固定结构中的数据都有名字structfishsnappy={"Snappy","Piranha",69,4};printf("Name=%s\n",snappy.name);结构体和数组有些相像,但不能像数组那样取值