Describe exception handling concept with an example?
No Answer is Posted For this Question
Be the First to Post Answer
What is function declaration in c++ with example?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
Name the debugging methods that are used to solve problems?
What is setbase c++?
Can you Mention some Application of C/C++?
What will i and j equal after the code below is executed? Explain your answer.
What is pointer to member?
What will the line of code below print out and why?
What is c++ map?
What are the classes in c++?
What are the main differences between C and C++?
How much maximum can you allocate in a single call to malloc()?