#include #include using namespace std; int main(){ char *a1 = new char[10]; strcpy(a1, "lizard"); char *a2 = new char[10]; strcpy(a2, "buzzard"); string story = "Once there was a buzzard that liked lizards and didn't eat them. It was very friendly. This sounds like a kid's book generated by AI."; a1[32] = 'Z'; cout << a1 << " " << a2 << "\n"; cin >> a1; cout << a1 << " " << a2 << "\n"; return 0; }