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

Post New Answer

More C++ General Interview Questions

What is the arrow operator in c++?

0 Answers  


What are smart pointers?

3 Answers  


What is a Default constructor?

1 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


List the features of oops in c++?

0 Answers  


implement stack using stack.h headerfile functions

1 Answers   Exilant, GMG, Subex, University,


Is sorted c++?

0 Answers  


What is else if syntax?

0 Answers  


Is c++ a pure oop language?

0 Answers  


What do you mean by storage classes?

1 Answers  


How can we access protected and private members of a class?

0 Answers  


What is the Difference between "vector" and "array"?

15 Answers   Covansys, Gambit, TCS, Wipro,


Categories