#include #define MAX 4 int main( void ) { int mynums[ MAX ] = { 23, 8, 11, 31 }; int i; for ( i = 0; i < MAX; ++i ) printf( "%d ", mynums[ i ] ); }