Question: Programming Languages Question: Given the following code int main() { int *ptr1 = new int; int *ptr2 = new int; *ptr1 = 100; ptr1 =
Programming Languages Question:
Given the following code
int main()
{
int *ptr1 = new int;
int *ptr2 = new int;
*ptr1 = 100;
ptr1 = ptr2;
return 0;
}
What becomes of the first heap dynamic variable whose value is 100?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
