Explain explicit container.
No Answer is Posted For this Question
Be the First to Post Answer
How do you add an element to a set in c++?
What are associate containers?
What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
Explain Text Manipulation Routines?
Explain some examples of operator overloading?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
What is an Iterator class?
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
What are the uses of c++ in the real world?
Where do I find the current c or c++ standard documents?
How would you obtain segment and offset addresses from a far address of a memory location?
What is const in c++?