21.4.  Introduction to Arrays

[ fromfile: memoryaccess.xml id: arrays ]

int a[10]; // explicitly creates uninitialized cells a[0], a[1],..., a[9]
int b[] = {1,3,5,7}; // implicitly creates and initializes b[0],..., b[3]


[86] articles/exceptions.html