Write about the use of the virtual destructor?
No Answer is Posted For this Question
Be the First to Post Answer
Define linked lists with the help of an example.
What is the difference between shallow copy and deep copy?
What is a pdb file?
What is fixed in c++?
What is OOPs
What are iterators in c++?
given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
Explain virtual functions in C++.
What is public, protected, private in c++?
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;
Brief explaination about #include<iostream.h>, cin and cout
What is the difference between interpreters and compilers?