Structure Declaration
Suppose that we want to represent an atomic element, including such features as its conventional name, scientific symbol, atomic weight, and mass.
struct element {
char name[10];
char symbol[5];
float aWgt;
float mass;
}
Note that each field can be arbitrary data types, including structure.