What is virtual destructor ans explain its use?
No Answer is Posted For this Question
Be the First to Post Answer
Will the inline function be compiled as the inline function always? Justify.
What is data types c++?
What is c++ and its uses?
Does there exist any other function which can be used to convert an integer or a float to a string?
What is else syntax in c++?
What programming language should I learn first?
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;
What is copy constructor? Can we make copy constructor private in c++?
What are the three forms of cin.get() and what are their differences?
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
What is null pointer and void pointer and what is their use?
What is an overflow error?