/* arrayBound.c */ #include int main() { int x, y, z[3]; y = 4321; for( x = 10 ; x >= 1 ; x-- ) z[y] = y/x; printf( "z[0]: %d\n", z[0] ); return 0; }