What happens when you attempt to compile and run the following code?#include <iostream>#include <string>using namespace std;class First{string *s;public:First() { s = new string("Text");}~First() { delete s;}void Print(){ cout<<*s;}};int main(){First FirstObject;FirstObject.Print();FirstObject.~First();}
A. It prints: Text
B. Compilation error
C. Runtime error.
D. None of these
What happens when you attempt to compile and run the following code?#include <iostream>#include <string>using namespace
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What happens when you attempt to compile and run the following code?#include <iostream>#include <string>using namespace
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!