I was reading this question Deleting a const pointer and wanted to know more about delete behavior. Now, as per my understanding:
delete
delete expressio
delete just makes a call to deallocate the memory the pointer points to, it doesn't change the value of the pointer nor the object. Therefore, delete has nothing to do with the const-ness of the pointer or object pointed to.
const