What are near,far,huge pointers
Read Answers(3) | 16,751 Views |
Why there are no virtual constructors but there are virtual destructors?
Read Answers(14) | 20,446 Views |
What is volatile specifire wityh example?
Read Answers(4) | 9,972 Views |
What are callback functions?Explain with an example.
Read Answers(7) | 12,388 Views |
Why array of reference is not possible?
Read Answers(12) | 13,109 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) | 11,175 Views |
what is the diff b/w Copy Constuctor & assignment operator.
(Not synatax wise but internally)
Read Answers(11) | 11,020 Views |
what do U mean by bottom up approch and top down approch
Read Answers(8) | 8,347 Views |
What does Public and Private mean in C++
Read Answers(10) | 5,899 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,160 Views |