Is there a way to see what the expanded code will look like after preprocessing? Found many answers to my question online but all of them used a lot of terms which were completely alien to me. Seeing expanded C macros Determine the expansion of a C macro I am a complete beginner in programming. Learning C from 'Let us C' by Y.K. Currently in the 12th chapter 'C Preprocessor'. Can someone explain this in simple terms or should I just leave it for now and get back to it later?
using Code:Blocks as the IDE and gcc as the compiler.
Edit:-
#include<stdio.h>
#define AREA(x) (3.14*x*x)
int main()
{
int r1=1,r2=2;
float ar1,ar2;
ar1=AREA (r1);
printf(" %f",ar1);
ar2=AREA (r2);
printf(" %f",ar2);
printf(" %f",ar1/ar2);
printf(" %f",AREA (r1)/AREA (r2));
}