I am not sure if this is the right place to ask this question but i am desperate to know the answer. I possibly couldn't figure out the output here.
#include <stdio.h>
#define sqr(b) b*b
int main()
{
int a;
scanf("%d",&a);
printf("%d",sqr(a+3));
return 0;
}
Any help or tutorial regarding such type of examples will be appreciated.