Which bit wise operator is suitable for checking whether a particular bit is on or off?
No Answer is Posted For this Question
Be the First to Post Answer
What is prototype in c++ with example?
How can you quickly find the number of elements stored in a dynamic array?
What is the role of copy constructor in copying of thrown objects?
What is name mangling?
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.
Explain the concept of copy constructor?
What is problem with overriding functions?
What is the difference between operator new and the new operator?
how to swap two numbers with out using temp variable
12 Answers Global eProcure, TCS,
structure contains int, char, float how it behaves for big endian and little endian?
What is the best c++ book?
What will i and j equal after the code below is executed? Explain your answer.