Linux From Scratch (LFS) is a project that provides you with
step-by-step instructions for building your own GNU/Linux OS
from source code. URL: http://www.linuxfromscratch.org/
One Day One Command
===================
gcc — GNU C Compiler
Summary:
Several versions of the compiler (C, C++, Objective-C, Ada, Fortran,
and Java) are integrated; this is why we use the name “GNU Compiler
Collection”. GCC can compile programs written in any of these above
languages.
This C program is used in the examples.
#define DISPLAY “Hello Worldn”
main()
{
#ifdef MACRO
printf(DISPLAY);
#else
printf(“No Macron”);
#endif
}
Read more