#include<stdio.h> #define max(a,b) (a>b?a:b)
int main()
{
int j=max(3+2,2+8);
printf("%d",j);
return 0;
}
why this program show output as 9 ? please help me!!!!
--
You received this message because you are subscribed to the Google Groups
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/algogeeks?hl=en.
