#include<stdio.h>
#include<conio.h>
#define prn(a) printf("%d ",a)
#define print(a,b,c) prn(a),prn(b),prn(c)
#define max(a,b) (a<b)?b:a
void main()
{
int x=1,y=2;
clrscr();
print(max(x++,y),x,y);
printf("\n%d %d\n",x,y);
print(max(x++,y),x,y);
printf("\n%d %d\n",x,y);
getch();
}
--
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.