When is the copy constructor called?
No Answer is Posted For this Question
Be the First to Post Answer
Why c++ is faster than java?
What is the keyword auto for?
how can u create a doubly linked list with out using pointers?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
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"?
Is C++ case sensitive a) False b) Depends on implementation c) True
What is dev c++ used for?
what does the following statement mean? int (*a)[4]
Does c++ have finally?
What is a reference in C++?
How is new() different from malloc()?
If a header file is included twice by mistake in the program, will it give any error?