[ create a new paste ] login | about

Link: http://codepad.org/YuaX1kZm    [ raw code | output | fork ]

C, pasted on Sep 24:
1
2
3
4
5
6
7
8
#include<stdio.h>
#define man(x,y) (x)>(y)?(printf("%d   \n\n",x)):(y)
void main()
{
int i=15,j=10,k=0;
k=man(i++,++j);
printf("%d%d%d",i,j,k);
}


Output:
1
2
3
16   

17117


Create a new paste based on this one


Comments: