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 object in c++ example?
is throwing exception from a constructor not a good practice ?
What is #include ctype h in c++?
In c++, what is the difference between method overloading and method overriding?
What is the Standard Template Library?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
Why cstdlib is used in c++?
Explain selection sorting?
How many types of classes are there in c++?
What is a manipulative person?
Out of fgets() and gets() which function is safe to use?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;