#include #include using namespace std; int main() { char * phrase1 = strdup("hello world"); char phrase2[] {"This is a phrase"}; cout << "The first phrase is " << phrase1 << endl; cout << "The second phrase is " << phrase2 << endl; free(phrase1); return 0; }