Interesting Facts about Macros and Preprocessors in C - GeeksforGeeks
In a C program, all lines that start with # are processed by preporcessor which is a special program invoked by the compiler. In a very basic term, preprocessor takes a C program and produces another C program without any #. Following are some interesting...