What is a null object in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Is c the same as c++?
What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?
6 Answers HCL, Integra, IPMC, ORG,
What does return 0 do in c++?
Explain virtual class?
How would you represent an error detected during constructor of an object?
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 a .lib file in c++?
How can you create a virtual copy constructor?
Implement strncpy
What are enumerations?
How to reduce a final size of executable?
Why c++ is called oop?