Link to home
Start Free TrialLog in
Avatar of sivakugan
sivakugan

asked on

The Difference between 32 bit and 64 bit Architecture and Application Support

Hi,
I'm posting this question to get clear understanding of the 64 bit Architecture of the Computer.
Its because i'm so confused.

What's the difference between 32 bit and 64 bit architecture?.

I have seen some applications , those are indicated on CD that supports only 32 bit but still works on 64 bit architecture?..I don't understand how is that.

There is two system32 folder in 64 bit architecture..Why is that?..

Thanks for your answer in Advance.
ASKER CERTIFIED SOLUTION
Avatar of Muhammad Ahmad Imran
Muhammad Ahmad Imran
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

The 64-bit operating systems have two System32 folders. The  C:\WINDOWS\System32 directory contains the 64-bit libraries (such as  kernel32.dll). However there is a new directory called  C:\WINDOWS\SysWow64, which contains the exact same files as System32,  but their 32-bit partners. The SYSWOW64 service in Windows will  automatically map programs to the right version.
So if a 32-bit program attempts to load  "C:\WINDOWS\System32\kernel32.dll", SYSWOW64 will automatically behind  the scenes redirect you to C:\WINDOWS\SysWow64.
Avatar of sivakugan

ASKER

Good Answer