[ create a new paste ] login | about

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

C, pasted on May 21:
1
2
3
4
5
6
7
8
9
10
void main()
{
  int a = 5;
  int b = 12;
  a += b;
  b -= b += b;
  b += a;
  a -= b;
  printf("%d, %d", a, b);
}


Output:
1
0, 17


Create a new paste based on this one


Comments: