First of all the source code is get compiled and the object code is returned i.e.binary code(machine language).Then the linker is called.Linker, a computer program that takes one or more objects...
In Linux you can use the gcc [Gross C Compiler] compiler for compiling a C program. The file will be compiled and if no errors object file will be created, which can be executed by giving typing...
The logic to create such programs is very simple. We know that rules of programming languages. Among them the most important one is "We should not use keywords as identifiers". Based on this rule we...