Hacker News new | ask | show | jobs
Portable Code: How To Check If A Machine Is 32 Bit Or 64 Bit (safercode.com)
2 points by shantanugoel 6313 days ago
Writing portable code is very important but it is one of the aspects that most people neglect until it is too late to realize its importance. Till few years ago, most people writing code for personal computers were not worried about the data sizes on their machines. They didn’t even think whether the machines, on which their code would be running, would be 32 bit or 64 bit.
1 comments

Not really sure how useful this is... even if it was practical to adapt datatypes at runtime, it would still be extremely painful. Surely just using portable types is vastly easier and straightforward.

(or am I missing something?)

Yes, using portable data types is much easier. But I thought about this when we had to make our code work with some legacy code (which we couldn't change) and the outputs were in non-portable data types.