Preprocessing in C

What is preprocessing? Preprocessing, as the name suggests, is the preprocessing of C-code before the actual compilation begins. In C, a line that begins with ‘#’ character is called a preprocessing directive. It is an indicator to the compiler that this preprocessing directive needs to be processed before compilation phase begins. Preprocessing directives Source file…

Continue Reading