How does preprocessed code look?
You can use the -E option with the GCC compiler to stop after preprocessing and display the preprocessed code. Here's a simple example:
Example: Preprocessor Directives with GCC
// main.c
#include <stdio.h>
// Define a constant
#define PI 3.14159
...
blog.jyotiprakash.org2 min read