Changes
/* Description */
The programs, under linux, Mac or Windows, are activated by a file called "''' executable ''' (binary file)", only our PC can understand this file ;-). There are 3 phases to create this file :
1/ edit your code (C, VB, Java, other) in file text with for C language ".c" or ".h" extension. These files are called "'''source file'''"
2/ using a compiler (here the C compiler)which translate the C instructions writting in the source file, in the "'''object'''" files 3/ using after a linker which will unite the object file and object library to create an executable file WARNING: It is not possible to transfer an executable file from one PC to another.It must recompile and link the source files on each PC..