Is it possible to use a new for the reallocation of pointers ?
No Answer is Posted For this Question
Be the First to Post Answer
Is c++ still in demand?
What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?
24 Answers Infosys, Microsoft, TCS,
Is c++ a software?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What's the order in which the local objects are destructed?
If you don’t declare a return value, what type of return value is assumed?
Can I learn c++ in a week?
How should runtime errors be handled in c++?
What is a volatile variable in c++?
How do I start a c++ project?
What is protected inheritance?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;