/* testarr06.cpp CIS 150 06/23/2005 David Klick Demonstration of going out of bounds with an array. */ #include using std::cout; const int ARRAY_SIZE = 5; int main(void) { int nums[ARRAY_SIZE]; int ctr; // initialize the array for (ctr=0; ctr