Structures and Other Programming Constructs
You can use structures with arrays, objects, procedures, and other structures. The mixed constructs use the same syntax as these constructs isolated.
Structures and arrays
A structure can contain an array as one or more of its members.
TODO
You can also declare an array of structures.
TODO
Structures and objects
A structure can contain an object as one or more of its members.
TODO
Structures and procedures
You can pass a structure to a procedure as an argument.
TODO
You can also return a structure from a procedure.
TODO
Structures in structures
Structures can contain other structures.
TODO