How is objective c different from c++?
No Answer is Posted For this Question
Be the First to Post Answer
Does c++ vector allocate memory?
Do we have private destructors?
how to access grid view row?
Explain dangling pointer.
What are the extraction and insertion operators in c++?
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 the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
Write about the use of the virtual destructor?
What is difference between class and structure in c++?
Is the declaration of a class its interface or its implementation?
How do I use turbo c++?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?