Posts

Showing posts from June, 2020

Native Vs Cross Compiler

Image
Hello , How are you guys?? Hope all are safe and staying at home. So here's i came up with new blog on Native Vs Cross Compiler. Lets get started. First of all what is compiler ,   Compiler   is the special program which converts your C/C++ code into some binary files or machine under-standable code. Machine understandable code is something which can understand by computer to do operations as per our instruction written in C or C++ code. So Now Lets talk about the two types of compiler : Native and Cross Compiler. Native Compiler :          This Compiler will generate machine understandable code or binary code for the same environment on which it working or run. For example Turbo C or GCC compiler. It will generate .exe file as a output file or Executable file. Executable code is a code which cannot be run without operating system.  Cross Compiler :         This Compiler will generate machine understandab...