Friday, August 19, 2016

Macros

What will be the output of following Code
#define SQUARE(x) x*x
void main()
{
     int Res,n=8;
     Res=64/SQUARE(n);
     printf("%d",Res);
}

No comments:

Post a Comment