What are near,far,huge pointers
Read Answers(3) | 12,414 Views |
Why there are no virtual constructors but there are virtual destructors?
Read Answers(9) | 13,975 Views |
What is volatile specifire wityh example?
Read Answers(3) | 7,610 Views |
What are callback functions?Explain with an example.
Read Answers(7) | 9,537 Views |
Why array of reference is not possible?
Read Answers(11) | 10,139 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) | 8,660 Views |
what is the diff b/w Copy Constuctor & assignment operator.
(Not synatax wise but internally)
Read Answers(11) | 8,278 Views |
what do U mean by bottom up approch and top down approch
Read Answers(8) | 6,337 Views |
What does Public and Private mean in C++
Read Answers(9) | 4,517 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) | 4,406 Views |