What are near,far,huge pointers
Read Answers(3) | 18,341 Views |
Why there are no virtual constructors but there are virtual destructors?
Read Answers(14) | 22,260 Views |
What is volatile specifire wityh example?
Read Answers(4) | 10,861 Views |
What are callback functions?Explain with an example.
Read Answers(7) | 13,444 Views |
Why array of reference is not possible?
Read Answers(12) | 14,169 Views |
class Object{ … }
Object *ptr;
1. ptr = new Object;
2. Object o; ptr = &o;
What's the difference b/w 1 and 2?
Read Answers(9) | 12,060 Views |
what is the diff b/w Copy Constuctor & assignment operator.
(Not synatax wise but internally)
Read Answers(11) | 11,999 Views |
what do U mean by bottom up approch and top down approch
Read Answers(8) | 9,030 Views |
What does Public and Private mean in C++
Read Answers(10) | 6,460 Views |
Is it possible to keep 2 stacks in a single array, if one grows from position one of the array, and the other grows from the last position. Write a procedure PUSH(x,s) that pushes element x onto stack S, where S is one or the other of these two stacks. Include all necessary error checks (Sent by Puneet Saraf)
Read Answers(7) | 6,774 Views |