What is a pointer how and when is it used?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of endl?
What will i and j equal after the code below is executed? Explain your answer.
What apps are written in c++?
What character terminates all character array strings a) b) . c) END
In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.
How do you flush std cout?
Is c++ vector a linked list?
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"?
How do you clear a set in c++?
List out some of the OODBMS available?
What is the arrow operator in c++?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?