| Computing.Net: Over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to sign up now, it's free! |
what's with 16/32 bit?
|
Original Message
|
Name: Frank
Date: January 9, 2002 at 17:46:32 Pacific
Subject: what's with 16/32 bit? |
Comment: how would 16bit or 32bit affect development of app in windows/dos? Do I have to consider these bits before writing an app?
Report Offensive Message For Removal
|
|
Response Number 1
|
Name: Giuseppe
Date: January 10, 2002 at 10:24:38 Pacific
|
Reply: (edit)The 16 bit developement is a developement where the default integer type, of the language you will use, has the standard size of 16 bit. So the range of numbers it can rappresents is between 32767 and -32678. If you will do a developement of 32 bit application the default integer type, of the language you will use, has the standard size of 32 bit. So the range of numbers it can rappresents is between 2147483647 and -2147483648. So if your applications will use big numbers you had better to choose to develop them with a 32 bit compiler.
Report Offensive Follow Up For Removal
|
|
Response Number 2
|
Name: bittyboy
Date: January 10, 2002 at 16:05:16 Pacific
|
Reply: (edit)The difference is the pointer arithmetic and not the format of the integers. 16 Bit compilers also provide you with 32 Bit integers - pascals "longint" for example. For future compatibilities its more recommended using 32Bit compilers. Windows 2000 already wiped out some 16 Bit DLLs.
Report Offensive Follow Up For Removal
|

Post Locked
This post is quite old and has been locked from receiving new replies. Please create a new posting instead.
Go to Programming Forum Home