[ create a new paste ] login | about

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

C++, pasted on Dec 23:
1
2
3
4
5
6
int main()
{
int a = 1,b = 2,c=3,d = 4,m = 2,n = 2;
(m = a > b) && (n = c > d);
printf("%d", n);
}


Output:
1
2


Create a new paste based on this one


Comments: