The storage for arrays was a topic of one of the lectures of this class. This program will demonstrate where static arrays are stored and where dynamic arrays are stored in C and C++ languages. This program does not treat the matter of storage of arrays in NASM assembly.
This program will declare one static array and one dynamic array.
It will then show where the data of the static array are stored.
Lastly, it will show where the data of the dynamic array are stored.
2023-Sept-12: This program was retested and not errors were discovered.