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,
2392Can 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 8803What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
1 4070What 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 6042
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What data encapsulation is in c++?
Explain how overloading takes place in c++?
How do you differentiate between overloading the prefix and postfix increments?
Discussion on error handling of C++ .
Is it possible for the objects to read and write themselves?
What's the best free c++ profiler for windows?
What is a class oop?
What is the difference between global int and static int declaration?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
When is dynamic checking necessary?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
Consider the following C++ program
Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.
If dog is a friend of boy, is boy a friend of dog?