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