#include using namespace std; int main() { float studentGrades[5]; string someName = "Ryan Flannery"; // output name... cout << "name: " << someName << endl; // set the values for the student grades beyond the size of the array cout << "begin evil code..." << endl; studentGrades[5] = 200.5; studentGrades[6] = 0; cout << "end evil code" << endl; // output name again... cout << "name: " << someName << endl; return 0; }