STL (140)
OOPS (873)
C++ General (2409) String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
HCL,
2386Can 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 8776What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
1 4068What 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 6039
What is stl stack?
What is polymorphism and types?
what's the basic's in dot net
Explain the difference between new() and malloc() in c++?
Can we use THIS Pointer in static function – Reason in C++?
Does c++ have arraylist?
In c++, what is the difference between method overloading and method overriding?
Which operator cannot overload?
which operator is used for performing an exponential operation a) > b) ^ c) none
What are single and multiple inheritances in c++?
Explain friend class?
What is static in oop?
What are the different scope C++ provide ?
Is html an oop?
What is this weird colon-member (" : ") syntax in the constructor?