What is the compatible "int" datatype in C++ that can resize itself to 4 bytes on 32bit & 8 bytes on 64bit windows?
Although INT_PTR works fine but it reduces the readability as well as its description tells us to use it for pointer arithmetic.
Thanks