How is new() different from malloc()?
No Answer is Posted For this Question
Be the First to Post Answer
What are multiple inheritances (virtual inheritance)?
Do the parentheses after the type name make a difference with new?
What is the meaning of c++?
What is setf in c++?
Are vectors faster than arrays?
What is auto used for in c++?
What would happen on forgetting [], while deallocating an array through new?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
Why are pointers not used in c++?
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
what are the iterator and generic algorithms.
What is lvalue?