695 pts.
 difference between external described datastructure and program described datastructure
can any one help me what is the difference between external described datastructure and program described data structure and what is the use of external data structure and, can i use variables of external data structure in another program

Software/Hardware used:
ASKED: July 8, 2008  8:28 AM
UPDATED: July 8, 2008  12:29 PM

Answer Wiki:
Hi, An externally described data structure uses an externally described file definition to define the data structure, it is used to retrieve the field definitions from the file at compile time and create a data structure in your program based upon those field definitions. This can be useful if you need the same data structure in a set of programs. If you need to change the data structure, you can simply change the definition of the file and recompile all the programs that reference it, instead of having to change all the internally defined data structures in the programs. You can use these *definitions* in another program, but an externally defined data structure is not normally used for storing variables for use between programs. You can, however call a program passing a data structure as a parameter - you can do this with an internallly or externally defined data structure, but remember if you use an externally defined data structure it makes it easier to maintain for multiple programs. Hope all this makes some sort of sense. Regards, Martin Gilbert.
Last Wiki Answer Submitted:  July 8, 2008  8:49 am  by  Gilly400   23,625 pts.
All Answer Wiki Contributors:  Gilly400   23,625 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _