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 8805What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
1 4072What 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 6044Post New C++ General Questions
How one would use switch in a program?
What does I ++ mean in c++?
What is an operator function? Describe the function of an operator function?
Is c the same as c++?
What is c++ good for?
Where must the declaration of a friend function appear?
What is a block in c++?
How are virtual functions implemented in c++?
How a modifier is similar to mutator?
What is data binding in c++?
What is a pdb file?
Explain the pure virtual functions?
What is the identity function in c++? How is it useful?
What should main() return in c and c++?
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?