[ create a new paste ] login | about

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

C, pasted on Feb 24:
1
2
3
4
5
6
int main()
{
int a = 1;
printf("%d", a + a++);
return 0;
}


Output:
1
2


Create a new paste based on this one


Comments: