#include int y[3] ; main() { printf( "The 1st element of y is %d\n", y[0]) ; y[1] = 100 ; printf( "The 2nd element of y is now %d\n", y[1]); }