Why ctype h is used in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is size of a object of following class? class Foo { public: void foo(){} }
What is the full name of logo?
Will c++ be replaced?
What are the static members and static member functions?
What things would you remember while making an interface?
What is encapsulation 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.
diff between pointer and reference in c++?
What is a pointer with example?
Where are setjmp and longjmp used in c++?
Can we overload operator in c++?
why can't we declare data member of class auto register or extern