What will be the output of the following function?
#define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf(%d,i);
}
Reveal answer
Fill a bubble to check yourself
What will be the output of the following function?
#define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf(%d,i);
}