I need a C++ refresher. Why does this gives a memory exception?
pear = new char[1024];
pear = "happy go lucky";
delete [] pear; // exception
|
I need a C++ refresher. Why does this gives a memory exception?
|
||||
Memory for 1024 character is allocated from heap and
You try to free the read-only string, which is a undefined behaviour manifested as a runtime exception. |
|||
|
|
This replaces the pointer allocated by That's bad. You can only |
|||
|
|
|
What you're doing is assigning |
|||
|
|
char* pear = new char[1024];? – EBi Jan 22 at 12:08