Question: char* b1 = new char{'b'}; char* b2 = b1; *b2 = 'c'; delete b1; *b2 = 'd'; What is wrong with this code? how can
char* b1 = new char{'b'};
char* b2 = b1;
*b2 = 'c';
delete b1;
*b2 = 'd';
What is wrong with this code? how can we fix it
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
