What is purpose of new operator?
No Answer is Posted For this Question
Be the First to Post Answer
Which operator can not be overloaded in C++?
What are the techniques you use for debugging?
Explain the isa and hasa class relationships.
Explain the register storage classes in c++.
What is the use of pointer in c++ with example?
Why can’t you call invariants() as the first line of your constructor?
Mention the ways in which parameterized can be invoked.
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.
Using a smart pointer can we iterate through a container?
Is there any problem with the following: char *a=NULL; char& p = *a;?