#include int main( void ) { int nums[4] = { 23, 8, 11, 31 }; int i; /* Oh dear, the 3 does not match length of array! */ for ( i = 0; i < 3; ++i ) printf( "%d ", nums[i] ); }