#include using namespace std; int main () { int i, foo [] = {16, 2, 77, 40, 12071}; for (i=0; i<5; i++) { cout << "foo[" << i << "]: " << foo[i] << endl; } return 0; }