//----------------------------------------------------------------- // // arrays0i.cpp // // Illustrates a simple integer array // // written by: Simon Parsons // modified : 25th April 2009 // //----------------------------------------------------------------- #include using namespace std; const int MAX = 6; int main() { int arr[MAX] = { -45, 6, 0, 72, 1543, 62 }; int i; for ( i=0; i