If I is an integer variable, which is faster ++i or i++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the various compound assignment operators in c++?
What is the use of endl?
How to construct muliton object
How do you flush std cout?
What is an associative container in c++?
What is the use of data hiding?
What is overloading unary operator?
What does iomanip mean in c++?
Which is the best c++ compiler?
Can non graphic characters be used and processed in C++?
What is an opaque pointer?
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;