What is the output of the following code?
#define LOGIC(a,b) (a==b)
int main()
{
if(LOGIC(5,5))
{
printf("SAME ");
}
return 0;
}

Posted on by