Windows based program doesnt work for mac??

perutjatuh

Beta member
Messages
1
Location
Bikini Bottom
Why will a program written for one type of computer (for example, Windows-based computer) not work on another type of computer (for example, a Macintosh)? Give two possible reasons.
 
Programming language it is written in and mac does not Communicate with executable files becuase it is a different operating system it has a developer kit all of it's own called skd developer's kit either build for windows or mac not both. as the assembly core coding and graphics design is completely different if you want it to work with both you will have to learn the cloud programming technology then it would Communicate with both operating systems and run it from a public cloud.
Regards

 
Programming language has nothing to do with it, you can use C, C++, Assembler, etc... languages on either platform. It's true that both platforms have their own SDK which is a library of routines that are used with a given programming language to develop software for the OS. The hardware isn't so different anymore since you can run Windows on a MAC or OS X on Intel now.

The big difference is the OS itself. A program written and compiled for Windows cannot be run on OS X and vice versa. There are fundamental differences in the OS kernel, security, file structure, graphics format, etc... between Windows and OS X which make it impossible for an executable to run on both platforms.
 
Back
Top Bottom