What methods can be overridden in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are the rules about using an underscore in a c++ identifier?
When does a name clash occur in c++?
List the features of oops in c++?
What do you understand by a pure virtual member function?
What is the use of volatile variable?
What do you understand by zombie objects in c++?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What is binary search in c++?
What is abstraction in c++?
what is Loop function? What are different types of Loops?
What is setbase c++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.