What are the advantages of c++? Explain
No Answer is Posted For this Question
Be the First to Post Answer
Difference between delete and free.
Explain about Virtual Function in C++?
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;
Is c++ still in demand?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What is #include iomanip?
Is vector a class in c++?
What are formatting flags in ios class?
What is the size of integer variable?
What are static variables?
Program to check whether a word is a sub-string or not of a string typed
What are the benefits of oop in c++?