GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Programming  >  C

 Print  |  
Question:  Binary portability

Answer: What is code/binary portability?


January 01, 2009 19:11:32 #1
 crimola   Member Since: January 2009    Total Comments: 4 

RE: Binary portability
 
Code portability is generally defined as C code (in the case of C) that adheres to the rules of the C standards and is Architecture (Pentium, PowerPC, MIPS, etc) as well as Platform (PC, Mac OS, Linux, etc) independent.  All you need to do with code portable code is recompile the application under the a new platform.

Binary portability refers to compiled code - tranformed into binary that is immediately usable (executable) under a compatible platform - e.g., compatible processor.
     

 

Back To Question