the pictorial representation of the memory, starting from the first line of code and ending with the last line of code (all in one picture so I can see the changes). (b) This code has a problem. What is it? How is it called? double x = 1.5, y = 3.4; double* p = &x;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter12: Points, Classes, Virtual Functions And Abstract Classes
Section: Chapter Questions
Problem 19SA
icon
Related questions
Topic Video
Question

Answer the given question with a proper explanation and step-by-step solution.

 

1. Consider the following code fragment.

(a) Draw the pictorial representation of the memory, starting from the first line of code and ending with the last line of code (all in one picture so I can see the changes).

(b) This code has a problem. What is it? How is it called?

double x = 1.5, y = 3.4;

double* p = &x;

double* p2 = new double[12];

*p += y;

p = &y;

*p *= 2;

for (int i{0}; i < 12; ++i)

{

p2[i] = 1.6;

}

p2 = p;

delete p2;

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning