#include using namespace std; int main() { char a[] = "Hello"; char *p = "Hello"; cout << a << endl; cout << p << endl; a[4] = '!'; cout << a << endl; p[4] = '!'; cout << p << endl; return 0; }