I am new to D programming. After reading the Basic types , I decided to check the size_t type on my 64 bit Windows 7. The code looks like this:
import std.stdio; void main() { writeln("Type: ", size_t.stringof); writeln("Size: ", size_t.sizeof); }
After execution exit:
Type: uint Size: 4
In my understanding, the type size_t should be laid out on a 64 bit OS.
Can anyone give any hint? Thank you very much in advance!
source share