What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
No Answer is Posted For this Question
Be the First to Post Answer
Explain one-definition rule (odr).
State the difference between pre and post increment/decrement operations.
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
Explain virtual destructor?
Explain how to initialize a const member data.
What is an orthogonal base class in c++?
Is main a class in c++?
Write a c program for binary addition of two 8 bit numbers.
Can you sort a set c++?
When should you use multiple inheritance?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
What is a conversion constructor?