declare 1 state based (state_ptr), 2 name character (20), /* Primary key */ 2 population fixed binary(31),/* 3rd alternate key */ 2 capital, 3 name character (20), 3 population fixed binary(31), 2 largest_cities(2), 3 name character(30), 3 population fixed binary(31), 2 symbols, 3 flower character (30), /* secondary -- 1st alternate -- key */ 3 bird character (30), /* tertiary -- 2nd alternate -- key */ state_ptr pointer, state_file file;