Hi Amir,

When you assign a character string pointer (char* x = "hello"), it's really just a pointer pointing to the memory location of "hello". As such, the string is read only. In your first...