How many characters are recognized by ANSI C++?
No Answer is Posted For this Question
Be the First to Post Answer
How to create a pure virtual function?
class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable
Write about all the implicit member functions of a class?
What are the types of pointer?
Write a corrected statement in c++ so that the statement will work properly. x =+ 7;
What is a responder chain?
What is an iterator?
How do you declare a set in c++?
What is c++ stringstream?
Which coding certification is best?
write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement
What is c++ mutable?