What is exception handling in C++?
Answer / nashiinformaticssolutions
Exception handling in C++ is implemented using try, catch, and throw blocks.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is DlgProc?
What are manipulators used for?
What is polymorphism & list its types in c++?
How can a '::' operator be used as unary operator?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Define private, protected and public access control.
what is static function
Which bit wise operator is suitable for turning off a particular bit in a number?
What is a storage class? Mention the storage classes in c++.
What is the keyword auto for?
Is c++ slower than c?
Explain all the C++ concepts using examples.