#define x 10 + 5
int main(){
int a = x*x;
printf("%d",a);
}
Can someone explain the difference between these codes? first output is 65 and second one is 225:
#define x 15
int main(){
int a = x*x;
printf("%d",a);
}