How does com provide language transparency?
No Answer is Posted For this Question
Be the First to Post Answer
How many ways can a variable be initialized into in C++?
What is data structure in c++?
reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
what is an array
Tell me what are static member functions?
Name four predefined macros.
What do you know about near, far and huge pointer?
What is the difference between const and constexpr?
What is a tuple c++?
Why do C++ compilers need name mangling?
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"?
Why do we need function?