If I have simple C program with just one main function.
- How do I find out the address of the block the code is allocated
- The size of the block of memory that the process is assigned ?
- The status of the stack (i.e the size of the stack and the base pointer to the stack)
- The size and location of each of variable declared in a program. (I understand the use of (sizeof) and (&) operators. But, How do I track each of the blocks that were allocated to the process to the variables or the bookkeeping variables to which they are assigned.)
If these constructs are maintained by the operating system ? Which ones are accessible and why ?
Are there any tool available for visualizing such a program state when the program is executing ?
Thanks, de costo.