Answer Posted / pradeep.v.s.
Array is a collection of variables of same data type stored
in contigious memory locations....
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain about Virtual Function in C++?
In the derived class, which data member of the base class are visible?
What is the role of C++ shorthand's?
What does it mean to declare a member variable as static?
how can i access a direct (absolute, not the offset) memory
address?
here is what i tried:
wrote a program that ask's for an address from the user,
creates a FAR pointer to that adress and shows it. then the
user can increment/decrement the value in that address by
pressing p(inc+) and m(dec-).
NOW, i compiled that program and opened it twice (in 2
different windows) and gave twice the same address to it.
now look what happen - if i change the value in
one "window" of the program, it DOES NOT change in the
other! even if they point to the same address in the memory!
here is the code snippet:
//------------------------------------------------------
#include Why is c++ not purely object oriented? Mention the purpose of istream class? What is implicit pointer in c++? What is the use of seekg in c++? Distinguish between a # include and #define. What are the 2 main types of data structures? Briefly describe a B+ tree. What is bulk loading in it? How do you find out if a linked-list has an end? (I.e. The list is not a cycle) If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect? Why is standard template library used?