#include int x[10] = { 1, 2, 3, 4, 5 } ; main() { int i ; for( i = 0; i < 10; i++) { printf( "x[%d] = %d\n", i, x[i]) ; } printf( "Done.") ; }