when I write
char *s = "hello everyone";
s++;
is there memory leak here?
p/s: English is not my native language so can have some errors.
|
when I write
is there memory leak here? p/s: English is not my native language so can have some errors. |
|||
|
No, there's no leak there and it has nothing to do with the pointer pointing at a string literal. Incrementing a pointer will NEVER cause a memory leak. The only thing that causes memory leaks is not freeing memory that you allocate. |
|||
|
|
const char* s = "hello everyone";– Seth Carnegie May 13 '12 at 16:53