First page Back Continue Last page Graphics
Chapter 04
Compound Types
- arrays, strings, structures, pointers
Array – Grouping of identical types.
Type Name [ Size ] initialization ;
e.g. int toys [ 8 ] ;
This defines an array of 8 ints.
It is always “AN ARRAY OF some_type”