#include <stdio.h>
// This is requesting all the content which resides in stdio header file
#define PI 3.14
#define SQUARE (x) x*x // made like a function
int radius = 5;
int area = PI * SQUARE(radius); // area = 3.14 * radius * radius and this will resolve during preprocessing time