/* * [Your Name] * [Your Section] * * CS350 * Debugging exercise * */ #include using namespace std; int main() { char *str = "I love figs!"; cout << str << endl; str[7] = 'p'; // oink oink! cout << str << endl; return 0; }