3.(a) Given the following C++ code: #include using namespace std; int main() { string *p = string; *p="Scout Doesn't Know...\n"; cout << *p; delete p; return 0; The program above supposes to create a dynamic variable and store the sentence "Scout Doesn't know.". Next, print the content in the dynamic variable and delete the dynamic variable. (i) Explain what is wrong with the above code. (ii) Modify the above program to provide the correct C++ code.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter3: Assignment, Formatting, And Interactive Input
Section: Chapter Questions
Problem 1PP: (General math) a. Write a C++ program to calculate and display the value of the slope of the line...
icon
Related questions
Question
3.(a) Given the following C++ code:
#include <iostream>
using namespace std;
int main() {
string *p = string;
*p="Scout Doesn't Know...\n";
cout <« *p;
delete p;
return 0;
The program above supposes to create a dynamic variable and store the sentence "Scout Doesn't
know.". Next, print the content in the dynamic variable and delete the dynamic variable.
(i) Explain what is wrong with the above code.
(ii) Modify the above program to provide the correct C++ code.
Transcribed Image Text:3.(a) Given the following C++ code: #include <iostream> using namespace std; int main() { string *p = string; *p="Scout Doesn't Know...\n"; cout <« *p; delete p; return 0; The program above supposes to create a dynamic variable and store the sentence "Scout Doesn't know.". Next, print the content in the dynamic variable and delete the dynamic variable. (i) Explain what is wrong with the above code. (ii) Modify the above program to provide the correct C++ code.
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
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++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
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