What is the best c c++ compiler for windows?
No Answer is Posted For this Question
Be the First to Post Answer
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;
How does class accomplish data hiding in c++?
What is the use of lambda in c++?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
In how many ways we can initialize an int variable in C++?
What is ios flag in c++?
What are different types of loops in c++?
List out some of the object-oriented methodologies?
what are Operators and explain with an example?
What is binary object model?
write a C++ programming :if the no is between 32 to 50 it will be odd.
Does c++ vector allocate memory?