|
Blue Forest http://www.lslnet.com at 10:18 on June 6, 2006
What is the difference between that and int16 int32 If that |
What is the difference between that and int16 int32 The types __int8, __int16, and __int32 are synonyms for the ANSI types that have the same size. superscript and are useful for writing code that behaves identically across multiple platforms. Note that the data type is synonymous with __int8 type char. __int16 is synonymous with the short type, and is synonymous with __int32 type int. The ANSI __int64 type has no equivalent. |
| |