#include int main( void ) { int nums[] = { 23, 8, 11, 31 }; for ( int i = 0; i < 4; ++i ) { cout << nums[ i ] << ' '; } cout << endl; }