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"?
CSC,
6 8582What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
1 3991What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
4 5915Post New C++ General Questions
How would you obtain segment and offset addresses from a far address of a memory location?
Describe the process of creation and destruction of a derived class object?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
How does code-bloating occur in c++?
What is ios :: in in c++?
Are iterators pointers?
What is isdigit c++?
Explain the use of vtable.
What is the identity function in c++? How is it useful?
How a new operator differs from the operator new?
What is flush programming?
What is the use of main function in c++?
what are function pointers?
What is the difference between global variables and local variable
What is the main purpose of overloading operators?