What are the different types of comments allowed in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Can a program run without main?
How can virtual functions in c++ be implemented?
Can I create my own functions in c++?
What do the header files usually contains?
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;
Can we overload operator in c++?
What is capacity in vector in c++?
What is prototype in c++ with example?
Can member data be public?
Array base access faster or pointer base access is faster?
Will c++ be replaced?
What is data abstraction? How is it different from data encapsulation?