Is there a way to print out the lowest and highest memory address that an Operating system can address in c?
|
|
|
|
|
No, this is not a feature of standard C. Whatever solution you need will need to be OS-specific. If you have some specific OS' in mind, you should mention them. But I'm having a hard time wondering why this would matter. It's not required to be able to write C programs, so perhaps you could enlighten us. Based on your comment:
Again this depends on the OS. Your address space is not necessarily the physical memory you have, it's the totality of the locations you can address. For example, an operating system based on x86 may give every single process its own 4G address space but you have to ask the OS for "backing" memory (actual real memory to put in that address space). And some of that address space is actually shared amongst all processes (where the OS can load one physical copy of its code for the use of all processes, for example). You have to remember that virtual memory and physical memory are very different beasts. |
|||
|
|
|
On Linux, you can interrogate the memory map for any running process by looking at
For this process, the last entry in the memory map is 0xfffff000, so the last addressable byte is 0xfffff000 - 1. |
||
|
|
|
|
On modern operating systems with virtual memory and memory protection, the bounds of a process' address space are not static. When you allocate memory from the heap, that can be implemented by the operating system mapping more physical memory into your address space, thus causing that space to grow. |
||
|
|
|
|
The most important thing here is process memory and OS memory are completely different things. So speaking "in C" do you really mean something different from process memory space? I suggest this could help, at least give you some direction. Another thing is brk(2) / sbrk(2). These mechanics are not so often used as my experience shows. |
||
|
|
|
|
The simple answer is that on a 32-bit address system (for example), the address range is And realize than on any given program running on a modern operating system, most of the address space is unmapped. With virtual memory, every process has its own address space, so that the byte at address |
||
|

0. Highest?wc -c /dev/mem | perl -le'printf("%x\n", <>)'Muahahahahah! ;) – a paid nerd Nov 6 at 23:32