C/C++ Compiler Operations

Sources : Delroy A. Brinkerhoff : Object-Oriented Programming using C++Brian Gough, Richard M. Stallman : An Introduction to GCC The process of translating source code into an executable program is called “compiling the program” or just “compiling”.We usually view the compilation process as a single action and generally refer to it as such.Nevertheless, a modern …

Computer Programming

Computers can only understand binary language (sequences of instructions made of 1s and 0s) called machine code or machine language. To command a computer you need to speak its language.Not all the computers “speak the same way”, there are different technical implementations and representation of instructions. The instructions that a machine can understand is called …