#include<stdio.h>
#define x 5+2
//here # is a macro properties
//in this the value of x is written as same
// here the value is 5+2 then according to precedence evaluate the equation.
void main()
{
int i;
i=x*x*x;
printf("i is %d",i);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: