This program will demonstrate the relations between stack space,, heap space, and code space.
Also, the user will see where static arrays are stored and where dynamic arrays are stored.
Notice how prototypes of functions written in X86 are placed in the C++ calling program.
2023-Sept-12. This program was re-tested and no deficiencies were detected.
This program (C++) declares three kinds of arrays and then shows the user where those arrays are and what they contain. Notice the addresses of the static arrays compared with the addresses of the one dynamic array.
1. static array of long integers
2. static array of char (sometimes called a cstring)
3. dynamic array of long ints